Author: Wim Lavrijsen <[email protected]>
Branch: reflex-support
Changeset: r54957:f2ebfe583d32
Date: 2012-05-07 23:18 -0700
http://bitbucket.org/pypy/pypy/changeset/f2ebfe583d32/
Log: fix compilation error in CINT backend
diff --git a/pypy/module/cppyy/src/cintcwrapper.cxx
b/pypy/module/cppyy/src/cintcwrapper.cxx
--- a/pypy/module/cppyy/src/cintcwrapper.cxx
+++ b/pypy/module/cppyy/src/cintcwrapper.cxx
@@ -552,7 +552,7 @@
if (cppyy_is_constructor(handle, method_index))
return cppstring_to_cstring("constructor");
f = (TFunction*)cr->GetListOfMethods()->At(method_index);
- else
+ } else
f = &g_globalfuncs[method_index];
return type_cppstring_to_cstring(f->GetReturnTypeName());
}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit