aboutsummaryrefslogtreecommitdiff
path: root/graphics/luxrender/files/patch-c++14-fixes
blob: 2391a7e2f783851bab59e9d4e6c1a03178c5fbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
--- core/queryable/queryable.h.orig	2016-05-09 21:21:17 UTC
+++ core/queryable/queryable.h
@@ -194,7 +194,7 @@ class LUX_EXPORT Queryable (public)
 	}
 	template<class T> friend void AddStringAttribute(T &object,
 		const std::string &name, const std::string &description,
-		const boost::function<std::string (void)> &get, const boost::function<void (std::string)> set = NULL) {
+		const boost::function<std::string (void)> &get, const boost::function<void (std::string)> set = 0x0) {
 
 		AddAttrib<QueryableStringAttribute>(object, name, description, get, set);
 	}
--- core/scheduler.cpp.orig	2016-05-09 21:21:17 UTC
+++ core/scheduler.cpp
@@ -43,7 +43,7 @@ void NullTask(Range*){}
 
 Scheduler::Scheduler(unsigned step)
 {
-	current_task = NULL;
+	current_task = 0x0;
 	default_step = step;
 	state = RUNNING;
 
@@ -127,7 +127,7 @@ TaskType Scheduler::GetTask()
 		condition.wait(lock);
 
 	if(current_task == NullTask)
-		return NULL;
+		return 0x0;
 
 	return current_task;
 }
@@ -152,7 +152,7 @@ bool Scheduler::EndTask(Thread* thread)
 
 	if(counter == 0)
 	{
-		current_task = NULL;
+		current_task = 0x0;
 		condition.notify_all();
 	}
 	else