diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 20:19:05 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 20:19:05 +0000 |
commit | 9769ab22265b313171d201b5928688524a01bd87 (patch) | |
tree | 4215db61d3b617687d0eec4ed3caf7dbf973f4ca /include/llvm/Module.h | |
parent | 109026290b3b07152322e65801edb51dccfe7ddc (diff) | |
download | external_llvm-9769ab22265b313171d201b5928688524a01bd87.zip external_llvm-9769ab22265b313171d201b5928688524a01bd87.tar.gz external_llvm-9769ab22265b313171d201b5928688524a01bd87.tar.bz2 |
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 976d92c..33b4c3d 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -1,13 +1,13 @@ //===-- llvm/Module.h - C++ class to represent a VM module ------*- C++ -*-===// -// +// // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. -// +// //===----------------------------------------------------------------------===// // -// This file contains the declarations for the Module class that is used to +// This file contains the declarations for the Module class that is used to // maintain all the information related to a VM module. // // A module also maintains a GlobalValRefMap object that is used to hold all @@ -229,7 +229,7 @@ public: /// @brief Remove a library from the list of dependent libraries inline void removeLibrary(const std::string& Lib) { LibraryList.remove(Lib); } - /// @brief Get all the libraries + /// @brief Get all the libraries inline const LibraryListType& getLibraries() const { return LibraryList; } //===--------------------------------------------------------------------===// @@ -245,7 +245,7 @@ public: /// 'delete' a whole class at a time, even though there may be circular /// references... first all references are dropped, and all use counts go to /// zero. Then everything is delete'd for real. Note that no operations are - /// valid on an object that has "dropped all references", except operator + /// valid on an object that has "dropped all references", except operator /// delete. /// void dropAllReferences(); |