summaryrefslogtreecommitdiff
path: root/graphics/opencollada/files/patch-clang15
blob: 4ca404cabe518cd26b43dffff128c2cda5f3cc43 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--- DAEValidator/library/src/Dae.cpp.orig	2018-11-26 22:43:10 UTC
+++ DAEValidator/library/src/Dae.cpp
@@ -24,14 +24,14 @@ namespace opencollada
 
 	Dae::Dae(Dae && other)
 	{
-		*this = move(other);
+		*this = std::move(other);
 	}
 
 	const Dae & Dae::operator = (Dae && other)
 	{
-		this->XmlDoc::operator=(move(other));
-		mUri = move(other.mUri);
-		mExternalDAEs = move(other.mExternalDAEs);
+		this->XmlDoc::operator=(std::move(other));
+		mUri = std::move(other.mUri);
+		mExternalDAEs = std::move(other.mExternalDAEs);
 		return *this;
 	}
 
--- DAEValidator/library/src/XmlDoc.cpp.orig	2018-11-26 22:43:10 UTC
+++ DAEValidator/library/src/XmlDoc.cpp
@@ -20,7 +20,7 @@ namespace opencollada
 {
 	XmlDoc::XmlDoc(XmlDoc && other)
 	{
-		*this = move(other);
+		*this = std::move(other);
 	}
 
 	XmlDoc::~XmlDoc()
--- DAEValidator/library/src/XmlNode.cpp.orig	2018-11-26 22:43:10 UTC
+++ DAEValidator/library/src/XmlNode.cpp
@@ -105,7 +105,7 @@ namespace opencollada
 
 		XmlNodeSet result(xmlXPathEvalExpression(BAD_CAST xpath.c_str(), context));
 		xmlXPathFreeContext(context);
-		auto p = xpathCache.insert(pair<XPathCacheKey, XmlNodeSet>(XPathCacheKey(mNode, xpath), move(result)));
+		auto p = xpathCache.insert(pair<XPathCacheKey, XmlNodeSet>(XPathCacheKey(mNode, xpath), std::move(result)));
 		return p.first->second;
 	}
 
--- DAEValidator/library/src/XmlNodeSet.cpp.orig	2018-11-26 22:43:10 UTC
+++ DAEValidator/library/src/XmlNodeSet.cpp
@@ -9,7 +9,7 @@ namespace opencollada
 
 	XmlNodeSet::XmlNodeSet(XmlNodeSet&& other)
 	{
-		*this = move(other);
+		*this = std::move(other);
 	}
 
 	XmlNodeSet::~XmlNodeSet()