diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-04-07 19:45:59 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-04-07 19:45:59 +0000 |
commit | 68c405d6e860e026a4bbd7ae19328c26523dde4d (patch) | |
tree | 9749d2091696c386019b4a097ff6fcaf557214ce | |
parent | a0bd8109f95cedb7cf1bf515f8d896d1f3f7c81d (diff) |
fix style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68542 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Type.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 9f93d17d9f..7b62530b51 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -672,9 +672,9 @@ protected: public: ~TypeMapBase() { - //PATypeHolder won't destroy non-abstract types. - //We can't destroy them by simply iterating, because - //they may contain references to each-other + // PATypeHolder won't destroy non-abstract types. + // We can't destroy them by simply iterating, because + // they may contain references to each-other. for (std::multimap<unsigned, PATypeHolder>::iterator I = TypesByHash.begin(), E = TypesByHash.end(); I != E; ++I) { |