From: wolf Date: Wed, 28 Apr 2004 22:27:59 +0000 (+0000) Subject: Generate some output. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5be2133f79882d92b1f087ae06bf24e83d57366;p=dealii-svn.git Generate some output. git-svn-id: https://svn.dealii.org/trunk@9118 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/fe_collection_01.cc b/tests/bits/fe_collection_01.cc index 7c7d610d65..29e52a2083 100644 --- a/tests/bits/fe_collection_01.cc +++ b/tests/bits/fe_collection_01.cc @@ -31,12 +31,15 @@ template void check () { - const FE_Q fe_1(1); - const FE_Q fe_2(2); - - FECollection fc; - fc.add_fe (fe_1); - fc.add_fe (fe_2); + { + const FE_Q fe_1(1); + const FE_Q fe_2(2); + + FECollection fc; + fc.add_fe (fe_1); + fc.add_fe (fe_2); + } + deallog << dim << "d: OK" << std::endl; } int main()