about summary refs log tree commit diff
path: root/src/rustllvm/RustWrapper.cpp
diff options
context:
space:
mode:
authorVadim Chugunov <vadimcn@gmail.com>2013-06-17 08:42:05 -0700
committerVadim Chugunov <vadimcn@gmail.com>2013-06-17 08:42:05 -0700
commitadff46250ed9e9b3c31da65b2997a5458e41305a (patch)
treebff151218e17bf8409b8a40750af48a192328eb4 /src/rustllvm/RustWrapper.cpp
parent1e682e29eb8f5ddaf36e6374f46d8d8ac364d824 (diff)
downloadrust-adff46250ed9e9b3c31da65b2997a5458e41305a.tar.gz
rust-adff46250ed9e9b3c31da65b2997a5458e41305a.zip
Fixed rebase fallout .
Diffstat (limited to 'src/rustllvm/RustWrapper.cpp')
-rw-r--r--src/rustllvm/RustWrapper.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rustllvm/RustWrapper.cpp b/src/rustllvm/RustWrapper.cpp
index 6537e232f8b..614c1723c5f 100644
--- a/src/rustllvm/RustWrapper.cpp
+++ b/src/rustllvm/RustWrapper.cpp
@@ -565,7 +565,9 @@ extern "C" bool LLVMRustStartMultithreading() {
 typedef DIBuilder* DIBuilderRef;
 
 template<typename DIT>
-DIT unwrapDI(LLVMValueRef ref) { return DIT(ref ? unwrap<MDNode>(ref) : NULL); }
+DIT unwrapDI(LLVMValueRef ref) { 
+    return DIT(ref ? unwrap<MDNode>(ref) : NULL); 
+}
 
 extern "C" DIBuilderRef LLVMDIBuilderCreate(LLVMModuleRef M) {
     return new DIBuilder(*unwrap(M));