Move unordered containers under cpp11_ prefix

This commit is contained in:
Brad Kotsopoulos 2018-11-28 16:51:53 -05:00
commit b1697d7772
5 changed files with 10 additions and 12 deletions

View file

@ -54,8 +54,8 @@ CPP11_TEST_CASES = \
cpp11_shared_ptr_overload \
cpp11_shared_ptr_upcast \
cpp11_strongly_typed_enumerations_simple \
li_std_unordered_map \
li_std_unordered_set \
cpp11_li_std_unordered_map \
cpp11_li_std_unordered_set \
DOXYGEN_TEST_CASES := \
doxygen_parsing_enums_simple \

View file

@ -1,10 +1,10 @@
import li_std_unordered_map.*;
import cpp11_li_std_unordered_map.*;
public class li_std_unordered_map_runme {
public class cpp11_li_std_unordered_map_runme {
static {
try {
System.loadLibrary("li_std_unordered_map");
System.loadLibrary("cpp11_li_std_unordered_map");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);

View file

@ -1,10 +1,10 @@
import li_std_unordered_set.*;
import cpp11_li_std_unordered_set.*;
public class li_std_unordered_set_runme {
public class cpp11_li_std_unordered_set_runme {
static {
try {
System.loadLibrary("li_std_unordered_set");
System.loadLibrary("cpp11_li_std_unordered_set");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);