Allocate stacks with guard pages by default
[folly.git] / folly / Singleton.cpp
index cf1ce727fe31295e47d6f965e87a510126082b34..8e9cd99b0763138bd8eb7c61819da5c293a61703 100644 (file)
@@ -25,12 +25,6 @@ namespace folly {
 
 namespace detail {
 
-// This implementation should always live in .cpp file.
-StaticSingletonManager& StaticSingletonManager::instance() {
-  static StaticSingletonManager* instance = new StaticSingletonManager();
-  return *instance;
-}
-
 constexpr std::chrono::seconds SingletonHolderBase::kDestroyWaitTime;
 
 }