Merge pull request #184 from brandl-muc/override_for_msvc

Enables usage of override specifier for MSVC compilers
This commit is contained in:
Arseny Kapoulkine 2018-02-27 14:22:52 -08:00 committed by GitHub
commit 41219a5a20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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