From: David Wells Date: Sat, 4 Apr 2015 15:52:33 +0000 (-0400) Subject: Use the standard (void) to mark unused parameters. X-Git-Tag: v8.3.0-rc1~278^2~10 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b89032ea33670109563fe3f5ddd882491eff6d7;p=dealii.git Use the standard (void) to mark unused parameters. --- diff --git a/source/grid/grid_in.cc b/source/grid/grid_in.cc index 6530f82fa1..21abd58662 100644 --- a/source/grid/grid_in.cc +++ b/source/grid/grid_in.cc @@ -1468,9 +1468,7 @@ template <> void GridIn<2>::read_netcdf (const std::string &filename) { #ifndef DEAL_II_WITH_NETCDF - // do something with unused - // filename - filename.c_str(); + (void)filename; AssertThrow(false, ExcNeedsNetCDF()); #else const unsigned int dim=2;