Copyright 2014->2015
[folly.git] / folly / test / ArenaSmartPtrTest.cpp
index 54b8262a10634990c3bd8e1b1b89faca395b7bd4..633494ba9e545921175a8183f7958d9a12e74f91 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2013 Facebook, Inc.
+ * Copyright 2015 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * @author: Marcelo Juchem <marcelo@fb.com>
  */
 
-#include "folly/Memory.h"
-#include "folly/Arena.h"
+#include <folly/Memory.h>
+#include <folly/Arena.h>
 
 #include <gtest/gtest.h>
 
 using namespace folly;
 
+static_assert(
+  is_simple_allocator<int,SysArena>::value,
+  "SysArena should be a simple allocator"
+);
+
 struct global_counter {
   global_counter(): count_(0) {}