ipc: Fix critical build break in unique-id 64/47464/1
authorLukasz Kostyra <l.kostyra@samsung.com>
Thu, 3 Sep 2015 12:47:47 +0000 (14:47 +0200)
committerLukasz Kostyra <l.kostyra@samsung.com>
Thu, 3 Sep 2015 12:47:47 +0000 (14:47 +0200)
[Bug]           Build break using Clang due to recently added unique-id code
[Cause]         Incorrectly used Doxygen syntax causing critical build error
[Solution]      Correct the syntax.
[Verification]  Build, install, run tests

Change-Id: Ia0194aadfcd5cdcfba90cd518d24fe733edc934b

libs/ipc/unique-id.hpp

index bceda62..795c2d6 100644 (file)
@@ -66,8 +66,8 @@ public:
     friend std::ostream& operator<<(std::ostream& str, const UniqueID& id);
 
 
-    TimestampType mTime;    //< timestamp when generate() was called
-    UUIDType mUUID;         //< random UUID generated with libuuid
+    TimestampType mTime;    ///< timestamp when generate() was called
+    UUIDType mUUID;         ///< random UUID generated with libuuid
 };
 
 template <typename T>