Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / include / llvm / Bitcode / BitstreamReader.h
index 46e64d112ea7499df7bdf841a9079ccf843a3de3..9201daf936d765dba2ac0afa82c06c3c4588c8d9 100644 (file)
@@ -113,7 +113,7 @@ public:
       return *const_cast<BlockInfo*>(BI);
 
     // Otherwise, add a new record.
-    BlockInfoRecords.push_back(BlockInfo());
+    BlockInfoRecords.emplace_back();
     BlockInfoRecords.back().BlockID = BlockID;
     return BlockInfoRecords.back();
   }
@@ -512,6 +512,6 @@ public:
   bool ReadBlockInfoBlock();
 };
 
-} // End llvm namespace
+} // namespace llvm
 
 #endif