diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-11-06 11:50:54 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-11-06 11:51:16 -0800 |
commit | 0d015e9a2c3ebbd1882ada692b46375704d67a55 (patch) | |
tree | 93a356db5a67712f7e329908d2e77e7f5e4a2b81 /src | |
parent | aa117cce42d75d58e47c8d584fec7ace5693df48 (diff) |
Reduce MSVC version cutoff for move semantics support
MSVC 2010 supported move semantics (partially - but should be good enough for
our use case).
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 795b391..b2a1e80 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -76,12 +76,11 @@ #ifndef PUGIXML_HAS_MOVE # if __cplusplus >= 201103 # define PUGIXML_HAS_MOVE -# elif defined(_MSC_VER) && _MSC_VER >= 1800 +# elif defined(_MSC_VER) && _MSC_VER >= 1600 # define PUGIXML_HAS_MOVE # endif #endif - // If C++ is 2011 or higher, add 'override' qualifiers #ifndef PUGIXML_OVERRIDE # if __cplusplus >= 201103 |