diff options
-rw-r--r-- | tests/glibmm_value/main.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/glibmm_value/main.cc b/tests/glibmm_value/main.cc index 515a79e2..29417abb 100644 --- a/tests/glibmm_value/main.cc +++ b/tests/glibmm_value/main.cc @@ -12,7 +12,7 @@ class Widget; } void -some_method() +test() { // custom copyable Glib::Value<Foo> value_foo; @@ -33,5 +33,7 @@ some_method() // int main() { + test(); + return EXIT_SUCCESS; } |