summaryrefslogtreecommitdiff
path: root/zen/guid.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/guid.h')
-rwxr-xr-xzen/guid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/guid.h b/zen/guid.h
index 633547ad..b2ada48c 100755
--- a/zen/guid.h
+++ b/zen/guid.h
@@ -21,7 +21,7 @@ inline
std::string generateGUID() //creates a 16-byte GUID
{
//perf: generator: 0.38ms per creation;
- // retrieve GUID: 0.13µs per call
+ // retrieve GUID: 0.13µs per call
//generator is only thread-safe like an int => keep thread-local
thread_local boost::uuids::random_generator gen;
const boost::uuids::uuid nativeRep = gen();
bgstack15