Consistently have the namespace closing comment
[folly.git] / folly / test / FBVectorTest.cpp
index 2920a4f9594f66dc03658afc053574d3997f7fb1..98e284cbc74e870ed85d20d15af48396739fd3dd 100644 (file)
@@ -67,7 +67,7 @@ template <class T> T randomObject();
 template <> int randomObject<int>() {
   return random(0, 1024);
 }
-}
+} // namespace
 
 ////////////////////////////////////////////////////////////////////////////////
 // Tests begin here
@@ -123,7 +123,7 @@ TEST(fbvector, works_with_std_string) {
 
 namespace {
 class UserDefinedType { int whatevs_; };
-}
+} // namespace
 
 FOLLY_ASSUME_FBVECTOR_COMPATIBLE(UserDefinedType);