summaryrefslogtreecommitdiff
path: root/zen/guid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:13:16 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2018-05-09 00:13:16 +0200
commit2dd6739826c86ca96a6a1548fd2e0fb7c0eb8dd0 (patch)
tree39d2d1eed28bf2c231839dd118905fb34327628d /zen/guid.h
parent9.9 (diff)
downloadFreeFileSync-2dd6739826c86ca96a6a1548fd2e0fb7c0eb8dd0.tar.gz
FreeFileSync-2dd6739826c86ca96a6a1548fd2e0fb7c0eb8dd0.tar.bz2
FreeFileSync-2dd6739826c86ca96a6a1548fd2e0fb7c0eb8dd0.zip
10.0
Diffstat (limited to 'zen/guid.h')
-rwxr-xr-xzen/guid.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/zen/guid.h b/zen/guid.h
index b2ada48c..6cffc708 100755
--- a/zen/guid.h
+++ b/zen/guid.h
@@ -9,10 +9,14 @@
#include <string>
+#ifdef __GNUC__ //boost should clean this mess up
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
#include <boost/uuid/uuid_generators.hpp>
+#ifdef __GNUC__
#pragma GCC diagnostic pop
+#endif
namespace zen
bgstack15