Let Baton methods be noexcept
[folly.git] / folly / test / ArenaSmartPtrTest.cpp
index 5dddd97e9c282dce9391dafbd60ed35c2cef64fb..bad1af5ab95199e01add9b4081b4a9a1f9991fa4 100644 (file)
  * @author: Marcelo Juchem <marcelo@fb.com>
  */
 
-#include <folly/Arena.h>
 #include <folly/Memory.h>
+#include <folly/memory/Arena.h>
 #include <folly/portability/GTest.h>
 
 using namespace folly;
 
 static_assert(
-  is_simple_allocator<int,SysArena>::value,
+  is_simple_allocator<SysArena, int>::value,
   "SysArena should be a simple allocator"
 );
 
@@ -40,7 +40,7 @@ struct global_counter {
 
   unsigned count() const { return count_; }
 
-private:
+ private:
   unsigned count_;
 };
 
@@ -55,7 +55,7 @@ struct Foo {
     counter_.decrease();
   }
 
-private:
+ private:
   global_counter& counter_;
 };