Removed redundant spaces
[libcds.git] / cds / os / sunos / timer.h
index aebf04cb47aeb075dba2e4fd1537f9a7b25922f1..970a699aa8483079d9d7633d6361a3cad07f4e52 100644 (file)
@@ -48,7 +48,7 @@ namespace cds { namespace OS {
             typedef hrtime_t    native_timer_type;
             typedef long long    native_duration_type;
 
-            Timer() : m_tmStart( current() ) {}
+            Timer() : m_tmStart( current()) {}
 
             static native_timer_type    current()            { return gethrtime();    }
             static void current( native_timer_type& tmr )    { tmr = gethrtime();    }
@@ -68,12 +68,12 @@ namespace cds { namespace OS {
 
             double duration()
             {
-                return duration( native_duration() );
+                return duration( native_duration());
             }
 
             native_duration_type    native_duration()
             {
-                return native_duration( m_tmStart, current() );
+                return native_duration( m_tmStart, current());
             }
 
             static native_duration_type    native_duration( native_timer_type nStart, native_timer_type nEnd )