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
|
||||
# if __cplusplus >= 201103
|
||||
# define PUGIXML_OVERRIDE override
|
||||
# elif defined(_MSC_VER) && _MSC_VER >= 1700
|
||||
# define PUGIXML_OVERRIDE override
|
||||
# else
|
||||
# define PUGIXML_OVERRIDE
|
||||
# endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user