diff options
-rw-r--r-- | common/archive.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/archive.h b/common/archive.h index 1f29820aea..b005090a87 100644 --- a/common/archive.h +++ b/common/archive.h @@ -283,7 +283,6 @@ public: class SearchManager : public Singleton<SearchManager>, public SearchSet { public: - SearchManager(); /** * Create and add a FSDirectory by name @@ -300,6 +299,10 @@ public: * specific dirs + current dir). */ virtual void clear(); + +private: + friend class Common::Singleton<SingletonBaseType>; + SearchManager(); }; /** Shortcut for accessing the search manager. */ |