Fixed/added namespace ending comments using clang-tidy. NFC

A few more files that were fixed while preparing r240270.

llvm-svn: 240271
This commit is contained in:
Alexander Kornienko 2015-06-22 09:57:54 +00:00
parent 07d3690bdf
commit 25bf7721bc
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; };
} // end llvm namespace
} // namespace llvm
#endif

View File

@ -154,6 +154,6 @@ public:
template <typename T>
class PackedVector<T, 0>;
} // end llvm namespace
} // namespace llvm
#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);