Merge pull request #184 from brandl-muc/override_for_msvc
Enables usage of override specifier for MSVC compilers
This commit is contained in:
commit
41219a5a20
@ -85,6 +85,8 @@
|
|||||||
#ifndef PUGIXML_OVERRIDE
|
#ifndef PUGIXML_OVERRIDE
|
||||||
# if __cplusplus >= 201103
|
# if __cplusplus >= 201103
|
||||||
# define PUGIXML_OVERRIDE override
|
# define PUGIXML_OVERRIDE override
|
||||||
|
# elif defined(_MSC_VER) && _MSC_VER >= 1700
|
||||||
|
# define PUGIXML_OVERRIDE override
|
||||||
# else
|
# else
|
||||||
# define PUGIXML_OVERRIDE
|
# define PUGIXML_OVERRIDE
|
||||||
# endif
|
# endif
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user