You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This gives an error from clang++ about the repeated "using" statements:
/Users/felix/Devel/javacpp-presets/liquidfun/target/classes/org/bytedeco/javacpp/jniliquidfun.cpp:599:32: error:
redeclaration of using decl
using ::b2ContactListener::BeginContact;
~~~~~~~~~~~~~~~~~~~~~^
/Users/felix/Devel/javacpp-presets/liquidfun/target/classes/org/bytedeco/javacpp/jniliquidfun.cpp:596:32: note:
previous using declaration
using ::b2ContactListener::BeginContact;
^
Any help would be appreciated.
The text was updated successfully, but these errors were encountered:
Hi again,
This is all working amazingly well... but I've run into a problem with a callback that has an overloaded function.
The C++ code is
In the presets java I do
which results in this snippet, in the
jniliquidfun.cpp
file:This gives an error from clang++ about the repeated "using" statements:
Any help would be appreciated.
The text was updated successfully, but these errors were encountered: