Removing ns3 namespace
diff --git a/model/sync-full-state.h b/model/sync-full-state.h
index 2803497..75b6b1b 100644
--- a/model/sync-full-state.h
+++ b/model/sync-full-state.h
@@ -26,7 +26,6 @@
 #include "ns3/nstime.h"
 #include "sync-state.h"
 
-namespace ns3 {
 namespace Sync {
 
 /**
@@ -47,7 +46,7 @@
    *
    * This value can be used to randomize reconciliation waiting time in SyncApp
    */
-  Time
+  ns3::Time
   getTimeFromLastUpdate () const;
   
   // from State
@@ -58,11 +57,10 @@
   remove (NameInfoConstPtr info);
   
 private:
-  Time m_lastUpdated; ///< @brief Time when state was updated last time
+  ns3::Time m_lastUpdated; ///< @brief Time when state was updated last time
 };
 
 
 } // Sync
-} // ns3
 
 #endif // SYNC_STATE_H