aboutsummaryrefslogtreecommitdiff
path: root/tests/cxx/hybrid/polymorphism
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-19 09:06:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-19 09:06:32 +0200
commitb312b9f090475f3dd76994706260cb83ab162a8a (patch)
tree4c4e87b213d0d96aa1da1fd745ecddda6e3b5962 /tests/cxx/hybrid/polymorphism
parentc839fff4c025d635ed830d1eb2a814768f2fc728 (diff)
Add explicit return statement in main()
Diffstat (limited to 'tests/cxx/hybrid/polymorphism')
-rw-r--r--tests/cxx/hybrid/polymorphism/any-type/driver.cxx2
-rw-r--r--tests/cxx/hybrid/polymorphism/enumeration/driver.cxx2
-rw-r--r--tests/cxx/hybrid/polymorphism/multischema/driver.cxx2
3 files changed, 6 insertions, 0 deletions
diff --git a/tests/cxx/hybrid/polymorphism/any-type/driver.cxx b/tests/cxx/hybrid/polymorphism/any-type/driver.cxx
index cf39e15..62aaa79 100644
--- a/tests/cxx/hybrid/polymorphism/any-type/driver.cxx
+++ b/tests/cxx/hybrid/polymorphism/any-type/driver.cxx
@@ -56,4 +56,6 @@ main (int argc, char* argv[])
root_s.post ();
delete r;
+
+ return 0;
}
diff --git a/tests/cxx/hybrid/polymorphism/enumeration/driver.cxx b/tests/cxx/hybrid/polymorphism/enumeration/driver.cxx
index ff8703e..fea2d8b 100644
--- a/tests/cxx/hybrid/polymorphism/enumeration/driver.cxx
+++ b/tests/cxx/hybrid/polymorphism/enumeration/driver.cxx
@@ -64,4 +64,6 @@ main (int argc, char* argv[])
root_s.post ();
delete r;
+
+ return 0;
}
diff --git a/tests/cxx/hybrid/polymorphism/multischema/driver.cxx b/tests/cxx/hybrid/polymorphism/multischema/driver.cxx
index baf8d74..3347142 100644
--- a/tests/cxx/hybrid/polymorphism/multischema/driver.cxx
+++ b/tests/cxx/hybrid/polymorphism/multischema/driver.cxx
@@ -57,4 +57,6 @@ main (int argc, char* argv[])
root_s.post ();
delete r;
+
+ return 0;
}