Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / lib / Option / OptTable.cpp
index 96ba1836f4cd76d3b3fb0ab9505c80adcff05cb1..c37f193fa64e9cc25b6b5f53e974f66eaa41a9e6 100644 (file)
@@ -79,8 +79,8 @@ static inline bool operator<(const OptTable::Info &A, const OptTable::Info &B) {
 static inline bool operator<(const OptTable::Info &I, const char *Name) {
   return StrCmpOptionNameIgnoreCase(I.Name, Name) < 0;
 }
-}
-}
+} // namespace opt
+} // namespace llvm
 
 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}