Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / include / llvm / Analysis / InlineCost.h
index 79ed74d8241110976b6289d97676aff6dd5137a4..57da1325ec3549b6d0fc025234fdd7826e280b4f 100644 (file)
@@ -36,7 +36,7 @@ namespace InlineConstants {
   /// Do not inline functions which allocate this many bytes on the stack
   /// when the caller is recursive.
   const unsigned TotalAllocaSizeRecursiveCaller = 1024;
-}
+} // namespace InlineConstants
 
 /// \brief Represents the cost of inlining a function.
 ///
@@ -138,6 +138,6 @@ public:
   bool isInlineViable(Function &Callee);
 };
 
-}
+} // namespace llvm
 
 #endif