Reduce MSVC version cutoff for move semantics support
MSVC 2010 supported move semantics (partially - but should be good enough for our use case).
This commit is contained in:
parent
aa117cce42
commit
0d015e9a2c
@ -76,12 +76,11 @@
|
|||||||
#ifndef PUGIXML_HAS_MOVE
|
#ifndef PUGIXML_HAS_MOVE
|
||||||
# if __cplusplus >= 201103
|
# if __cplusplus >= 201103
|
||||||
# define PUGIXML_HAS_MOVE
|
# define PUGIXML_HAS_MOVE
|
||||||
# elif defined(_MSC_VER) && _MSC_VER >= 1800
|
# elif defined(_MSC_VER) && _MSC_VER >= 1600
|
||||||
# define PUGIXML_HAS_MOVE
|
# define PUGIXML_HAS_MOVE
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// If C++ is 2011 or higher, add 'override' qualifiers
|
// If C++ is 2011 or higher, add 'override' qualifiers
|
||||||
#ifndef PUGIXML_OVERRIDE
|
#ifndef PUGIXML_OVERRIDE
|
||||||
# if __cplusplus >= 201103
|
# if __cplusplus >= 201103
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user