diff options
author | Brandl, Matthäus (MBR) <Matthaeus.Brandl@eos.info> | 2018-02-27 22:27:15 +0100 |
---|---|---|
committer | Brandl, Matthäus (MBR) <Matthaeus.Brandl@eos.info> | 2018-02-27 22:27:15 +0100 |
commit | b8d1d07ad8d6610091eb13394e990a74e9ed0135 (patch) | |
tree | 3011084fa0b92762ab5b3d2bbc4279274227f156 | |
parent | 2ec3579f296fdea783a806179424b28b2f3c0100 (diff) |
Enables usage of override specifier for MSVC compilers (beginning with 17.0 which is the compiler of Visual Studio 2012)
-rw-r--r-- | src/pugixml.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index afe0a4d..9277384 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -85,6 +85,8 @@ #ifndef PUGIXML_OVERRIDE # if __cplusplus >= 201103 # define PUGIXML_OVERRIDE override +# elif defined(_MSC_VER) && _MSC_VER >= 1700 +# define PUGIXML_OVERRIDE override # else # define PUGIXML_OVERRIDE # endif |