From f3468d03a23bda76af8e65956719487cb460f16a Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Mon, 7 Nov 2011 10:10:27 +0100 Subject: [PATCH] Fix a long line --- src/comp/lib/llvm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs index 5baad8466f9..b189f2177c0 100644 --- a/src/comp/lib/llvm.rs +++ b/src/comp/lib/llvm.rs @@ -1060,7 +1060,7 @@ type object_file = {llof: ObjectFileRef, dtor: @object_file_res}; fn mk_object_file(llmb: MemoryBufferRef) -> option::t { let llof = llvm::LLVMCreateObjectFile(llmb); if llof as int == 0 { ret option::none::; } - ret option::some::({llof: llof, dtor: @object_file_res(llof)}); + ret option::some({llof: llof, dtor: @object_file_res(llof)}); } /* Memory-managed interface to section iterators. */