From 9b89032ea33670109563fe3f5ddd882491eff6d7 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 4 Apr 2015 11:52:33 -0400 Subject: [PATCH] Use the standard (void) to mark unused parameters. --- source/grid/grid_in.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; -- 2.39.5