Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / include / llvm / Option / OptSpecifier.h
index 0b2aaaec3afc8dc7a21f4a465e12030abe49c0d5..f9b121e352db03d3a0348975d6157a2a153ca191 100644 (file)
@@ -35,7 +35,7 @@ namespace opt {
     bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
     bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
   };
-}
-}
+} // namespace opt
+} // namespace llvm
 
 #endif