From: Guido Kanschat Date: Tue, 22 Feb 2000 18:09:35 +0000 (+0000) Subject: new compiler X-Git-Tag: v8.0.0~20889 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6b3d2fe1681f17e9728f92ab37f45a086c9b187;p=dealii.git new compiler git-svn-id: https://svn.dealii.org/trunk@2472 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fe/show_shapes.cc b/tests/fe/show_shapes.cc index a441df0fff..9cf7cd5331 100644 --- a/tests/fe/show_shapes.cc +++ b/tests/fe/show_shapes.cc @@ -49,6 +49,7 @@ plot_shape_functions(FiniteElement& finel, const char* name) } +int main() { FEQ1<2> q1; @@ -59,4 +60,6 @@ main() plot_shape_functions(q3,"Q3"); FEQ4<2> q4; plot_shape_functions(q4,"Q4"); + + return 0; } diff --git a/tests/fe/show_transform.cc b/tests/fe/show_transform.cc index c5f8c3f861..9c40663893 100644 --- a/tests/fe/show_transform.cc +++ b/tests/fe/show_transform.cc @@ -50,6 +50,7 @@ plot_transformation(FiniteElement& finel, } +int main() { Triangulation<2> tr; @@ -67,4 +68,6 @@ main() v(1) = 2.; plot_transformation(q1,c,"Transform-Q1"); + + return 0; }