From: Wolfgang Bangerth Date: Thu, 19 Jan 2006 19:46:22 +0000 (+0000) Subject: Avoid a warning about an unused variable. X-Git-Tag: v8.0.0~12580 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=002d95253e20f8aa7037b87742597e85ef9f61d2;p=dealii.git Avoid a warning about an unused variable. git-svn-id: https://svn.dealii.org/trunk@12095 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/data_out_base_tecplot_bin.cc b/tests/base/data_out_base_tecplot_bin.cc index f127d9e177..3107e92793 100644 --- a/tests/base/data_out_base_tecplot_bin.cc +++ b/tests/base/data_out_base_tecplot_bin.cc @@ -54,6 +54,8 @@ void check_all(std::ostream& log) { #if SEPARATE_FILES == 0 std::ostream& out = log; +#else + (void)log; #endif char name[100];