We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70946c5 commit cb30be7Copy full SHA for cb30be7
Examples/test-suite/fortran_naming.i
@@ -120,6 +120,13 @@ extern "C" int _0cboundfunc(const int _x) { return _x + 1; }
120
%constant int _leading_underscore_with_sixty_three_characters_might_be_tricky = 63;
121
%nofortranconst;
122
123
+// swigc_ -prefixed name: OK if not overloaded, too long if overloaded
124
+%inline %{
125
+int this_is_a_very_long_name_but_its_ok_unless_its_overloaded() { return 0; }
126
+int this_is_a_very_long_name_but_its_bad_since_its_overloaded(int i) { return i; }
127
+float this_is_a_very_long_name_but_its_bad_since_its_overloaded(float f) { return f; }
128
+%}
129
+
130
// This class is poorly named, but the symname is OK.
131
%inline %{
132
template<class T>
0 commit comments