diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-06 07:22:32 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-06 07:22:32 -0700 |
commit | 299e0b07c992dfcbacac2f165cdbb39c4e49af02 (patch) | |
tree | 5cabb92a0dfadda2e124d49e68f2b97c834bf950 /src | |
parent | 2cda053345f75ca961b4d35def88ad6c06945f01 (diff) | |
parent | dd2166ee27b4d1c9039bc56be18a2e46d7b7e91a (diff) |
Merge pull request #58 from Breush/patch-1
Fixed missing PUGI__FN
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index e166142..99ba3f3 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -12283,7 +12283,7 @@ namespace pugi rhs._impl = 0; } - xpath_query& xpath_query::operator=(xpath_query&& rhs) + PUGI__FN xpath_query& xpath_query::operator=(xpath_query&& rhs) { if (this == &rhs) return *this; |