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
diff options
context:
space:
mode:
-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;