[llvm-commits] CVS: llvm/include/llvm/Linker.h
Reid Spencer
reid at x10sys.com
Sat Nov 11 11:59:42 PST 2006
Changes in directory llvm/include/llvm:
Linker.h updated: 1.20 -> 1.21
---
Log message:
Minor style fixes from review.
---
Diffs of the changes: (+3 -1)
Linker.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/Linker.h
diff -u llvm/include/llvm/Linker.h:1.20 llvm/include/llvm/Linker.h:1.21
--- llvm/include/llvm/Linker.h:1.20 Sat Nov 11 05:54:25 2006
+++ llvm/include/llvm/Linker.h Sat Nov 11 13:59:25 2006
@@ -241,7 +241,9 @@
bool LinkInModule(
Module* Src, ///< Module linked into \p Dest
std::string* ErrorMsg = 0 /// Error/diagnostic string
- ) { return LinkModules(Composite, Src, ErrorMsg ); }
+ ) {
+ return LinkModules(Composite, Src, ErrorMsg );
+ }
/// This is the heart of the linker. This method will take unconditional
/// control of the \p Src module and link it into the \p Dest module. The
More information about the llvm-commits
mailing list