[llvm] r240393 - Revert r240271 (Fixed/added namespace ending comments using clang-tidy. NFC)

Alexander Kornienko alexfh at google.com
Tue Jun 23 03:48:35 PDT 2015


Author: alexfh
Date: Tue Jun 23 05:48:35 2015
New Revision: 240393

URL: http://llvm.org/viewvc/llvm-project?rev=240393&view=rev
Log:
Revert r240271 (Fixed/added namespace ending comments using clang-tidy. NFC)

Modified:
    llvm/trunk/include/llvm/ADT/ImmutableList.h
    llvm/trunk/include/llvm/ADT/PackedVector.h
    llvm/trunk/include/llvm/LinkAllPasses.h
    llvm/trunk/utils/unittest/googletest/include/gtest/internal/gtest-internal.h

Modified: llvm/trunk/include/llvm/ADT/ImmutableList.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/ImmutableList.h?rev=240393&r1=240392&r2=240393&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/ImmutableList.h (original)
+++ llvm/trunk/include/llvm/ADT/ImmutableList.h Tue Jun 23 05:48:35 2015
@@ -224,6 +224,6 @@ template <typename T> struct isPodLike;
 template <typename T>
 struct isPodLike<ImmutableList<T> > { static const bool value = true; };
 
-} // namespace llvm
+} // end llvm namespace
 
 #endif

Modified: llvm/trunk/include/llvm/ADT/PackedVector.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/PackedVector.h?rev=240393&r1=240392&r2=240393&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/PackedVector.h (original)
+++ llvm/trunk/include/llvm/ADT/PackedVector.h Tue Jun 23 05:48:35 2015
@@ -154,6 +154,6 @@ public:
 template <typename T>
 class PackedVector<T, 0>;
 
-} // namespace llvm
+} // end llvm namespace
 
 #endif

Modified: llvm/trunk/include/llvm/LinkAllPasses.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/LinkAllPasses.h?rev=240393&r1=240392&r2=240393&view=diff
==============================================================================
--- llvm/trunk/include/llvm/LinkAllPasses.h (original)
+++ llvm/trunk/include/llvm/LinkAllPasses.h Tue Jun 23 05:48:35 2015
@@ -188,6 +188,6 @@ namespace {
       (void) llvm::sys::RunningOnValgrind();
     }
   } ForcePassLinking; // Force link by creating a global definition.
-} // namespace
+}
 
 #endif

Modified: llvm/trunk/utils/unittest/googletest/include/gtest/internal/gtest-internal.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/unittest/googletest/include/gtest/internal/gtest-internal.h?rev=240393&r1=240392&r2=240393&view=diff
==============================================================================
--- llvm/trunk/utils/unittest/googletest/include/gtest/internal/gtest-internal.h (original)
+++ llvm/trunk/utils/unittest/googletest/include/gtest/internal/gtest-internal.h Tue Jun 23 05:48:35 2015
@@ -113,7 +113,7 @@ public:
     : std::ostream(os.rdbuf()), ros_(*this) {}
   operator raw_ostream&() { return ros_; }
 };
-} // namespace llvm
+}
 template <typename T>
 inline void GTestStreamToHelper(std::ostream* os, const T& val) {
   llvm::convertible_fwd_ostream cos(*os);





More information about the llvm-commits mailing list