- add missing includes

- fix msvc warning/preprocessor operator

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@892 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2013-08-07 08:50:58 +00:00
parent 7a2d40d8a6
commit f9211ab883
3 changed files with 3 additions and 2 deletions

View File

@@ -79,7 +79,7 @@
#if defined(_MSCVER)
#define DEPRECATED(msg) __declspec(deprecated(msg))
#elif defined(__GNUC__) or defined(__clang__)
#elif defined(__GNUC__) || defined(__clang__)
#define DEPRECATED(msg) __attribute__ ((deprecated(msg)))
#else
#define DEPRECATED(msg)