Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2020-05-19 13:33:17 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-05-19 13:33:17 +0300
commit4fa1fc29bd45835e26ff3497af8cf2a7c61d3c73 (patch)
tree6808dfc3cba71e4b71e0152794019d6d5de4d2c7 /intern
parente5c5e25c6815568c52cbde7ef8bf5f9f0f048f1a (diff)
Fluid: Cleanup unused variables
Diffstat (limited to 'intern')
-rw-r--r--intern/mantaflow/intern/MANTA_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/mantaflow/intern/MANTA_main.cpp b/intern/mantaflow/intern/MANTA_main.cpp
index a2666135c34..95013958561 100644
--- a/intern/mantaflow/intern/MANTA_main.cpp
+++ b/intern/mantaflow/intern/MANTA_main.cpp
@@ -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;