Commit 2196761b authored by Dong-hee,Na's avatar Dong-hee,Na

remove unpretty blank line

parent d99f473e
...@@ -98,15 +98,12 @@ extern "C" Box* listRepr(BoxedList* self) { ...@@ -98,15 +98,12 @@ extern "C" Box* listRepr(BoxedList* self) {
} }
chars.push_back(']'); chars.push_back(']');
Py_ReprLeave((PyObject*)self); Py_ReprLeave((PyObject*)self);
return boxString(llvm::StringRef(&chars[0], chars.size())); return boxString(llvm::StringRef(&chars[0], chars.size()));
} catch (ExcInfo e) { } catch (ExcInfo e) {
Py_ReprLeave((PyObject*)self); Py_ReprLeave((PyObject*)self);
throw e; throw e;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment