summaryrefslogtreecommitdiff
path: root/include/llvm/Linker.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Linker.h')
-rw-r--r--include/llvm/Linker.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/Linker.h b/include/llvm/Linker.h
index 5a19ec6065..460cad493e 100644
--- a/include/llvm/Linker.h
+++ b/include/llvm/Linker.h
@@ -241,7 +241,9 @@ class Linker {
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