]> git.meshlink.io Git - meshlink/blobdiff - test/basicpp.cpp
Make sure the tests compile again.
[meshlink] / test / basicpp.cpp
index 3b8b77f790e10e9ca10545f7e985cdc9c578dfab..e1c103663b91b8e4903b39a20710cb5518e57561 100644 (file)
@@ -8,7 +8,7 @@ using namespace std;
 int main(int argc, char *argv[]) {
        // Open a new meshlink instance.
 
-       meshlink::mesh *mesh = meshlink::open<meshlink::mesh>("basicpp_conf", "foo");
+       meshlink::mesh *mesh = meshlink::open<meshlink::mesh>("basicpp_conf", "foo", "basicpp");
        if(!mesh) {
                cerr << "Could not initialize configuration for foo\n";
                return 1;
@@ -48,7 +48,7 @@ int main(int argc, char *argv[]) {
 
        // Check that the name is ignored now, and that we still are "foo".
 
-       mesh = meshlink::open<meshlink::mesh>("basic_conf", "bar");
+       mesh = meshlink::open<meshlink::mesh>("basic_conf", "bar", "basicpp");
        if(!mesh) {
                cerr << "Could not open configuration for foo a second time\n";
                return 1;