summaryrefslogtreecommitdiff
path: root/zen/guid.h
diff options
context:
space:
mode:
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