Skip to content
Snippets Groups Projects
Commit b8d1d07a authored by Brandl, Matthäus (MBR)'s avatar Brandl, Matthäus (MBR)
Browse files

Enables usage of override specifier for MSVC compilers (beginning with 17.0...

Enables usage of override specifier for MSVC compilers (beginning with 17.0 which is the compiler of Visual Studio 2012)
parent 2ec3579f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment