summaryrefslogtreecommitdiff
path: root/shared/guid.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
commitfbe76102e941b9f1edaf236788e42678f05fdf9a (patch)
treef5f538316019fa89be8dc478103490c3a826f3ac /shared/guid.cpp
parent3.8 (diff)
downloadFreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip
3.9
Diffstat (limited to 'shared/guid.cpp')
-rw-r--r--shared/guid.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/shared/guid.cpp b/shared/guid.cpp
index 7a2ec68f..d359c29c 100644
--- a/shared/guid.cpp
+++ b/shared/guid.cpp
@@ -8,17 +8,17 @@
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <cassert>
-#include <algorithm>
-#include <vector>
+#include <algorithm>
+#include <vector>
+
+using namespace util;
+
-using namespace Utility;
-
-
struct UniqueId::IntData
-{
- boost::uuids::uuid nativeRep;
+{
+ boost::uuids::uuid nativeRep;
};
-
+
UniqueId::UniqueId() : pData(new IntData)
{
@@ -35,7 +35,7 @@ bool UniqueId::operator==(const UniqueId rhs) const
bool UniqueId::operator<(const UniqueId rhs) const
{
return pData->nativeRep < rhs.pData->nativeRep;
-}
+}
UniqueId::UniqueId(wxInputStream& stream) : //read
bgstack15