Browse Source

[1792] unrelated style fix per guideline. should be obvious from the diff.

JINMEI Tatuya 13 years ago
parent
commit
2397c86b17
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/datasrc/factory.h

+ 1 - 1
src/lib/datasrc/factory.h

@@ -163,7 +163,7 @@ public:
     ///
     /// \return Reference to the DataSourceClient instance contained in this
     ///         container.
-    DataSourceClient& getInstance() { return *instance_; }
+    DataSourceClient& getInstance() { return (*instance_); }
 
 private:
     DataSourceClient* instance_;