Fix copyright lines
[folly.git] / folly / test / SmallLocksBenchmark.cpp
index 28ecaeecbeb3c45e17575d4b532e417020ccc863..c26898378c9424929d24f210e998a1ee97a3a010 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Facebook, Inc.
+ * Copyright 2016-present Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -63,7 +63,7 @@ struct SimpleBarrier {
   size_t num_{0};
   size_t count_;
 };
-}
+} // namespace
 
 template <typename Lock>
 class InitLock {
@@ -274,7 +274,7 @@ struct VirtualBase {
 struct VirtualImpl : VirtualBase {
   void foo() override { /* noop */
   }
-  virtual ~VirtualImpl() {}
+  ~VirtualImpl() override {}
 };
 
 #ifndef __clang__