Fluid: Cleanup unused variables

This commit is contained in:
Sebastián Barschkis
2020-05-19 12:33:17 +02:00
parent e5c5e25c68
commit 4fa1fc29bd

View File

@@ -564,7 +564,7 @@ MANTA::~MANTA()
result = runPythonString(pythonCommands);
assert(result);
(void)result; // not needed in release
UNUSED_VARS(result);
}
/**
@@ -2997,7 +2997,7 @@ bool MANTA::updateGridsFromUni(string filename, vector<GridItem> grids)
return false;
}
assert(expectedBytes == readBytes);
(void)expectedBytes;
UNUSED_VARS(expectedBytes);
if (with_debug)
cout << "Fluid: Read successfully: " << filename << endl;