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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240393 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexander Kornienko 2015-06-23 10:48:35 +00:00
parent 43fab48d42
commit b7c46b5fc9
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -154,6 +154,6 @@ public:
template <typename T>
class PackedVector<T, 0>;
} // namespace llvm
} // end llvm namespace
#endif

View File

@ -188,6 +188,6 @@ namespace {
(void) llvm::sys::RunningOnValgrind();
}
} ForcePassLinking; // Force link by creating a global definition.
} // namespace
}
#endif

View File

@ -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);