diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
commit | c32707148292d104c66276b43796d6057c8c7a5d (patch) | |
tree | bb83513f4aff24153e21a4ec92e34e4c27651b1f /shared/guid.cpp | |
parent | 3.9 (diff) | |
download | FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2 FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip |
3.10
Diffstat (limited to 'shared/guid.cpp')
-rw-r--r-- | shared/guid.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/guid.cpp b/shared/guid.cpp index d359c29c..b20a1143 100644 --- a/shared/guid.cpp +++ b/shared/guid.cpp @@ -6,7 +6,17 @@ // #include "guid.h" #include <boost/uuid/uuid.hpp> + +//boost really should clean a bit up... +#ifdef __MINGW32__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wshadow" +#endif #include <boost/uuid/uuid_generators.hpp> +#ifdef __MINGW32__ +#pragma GCC diagnostic pop +#endif + #include <cassert> #include <algorithm> #include <vector> |