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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-05-14 12:08:42 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-05-17 18:09:28 +0300
commit0abe5936b7f63d1bb7e0e43f700299732d5c0827 (patch)
tree1680d0428756f97ab1dca6766eafc567298ed892 /intern/mantaflow
parenteaf7d36d66e551c3262d69f472b4028aeccb7e97 (diff)
Fluid: Cleanup namespace std
Diffstat (limited to 'intern/mantaflow')
-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 11ce32fb828..133e84d71a7 100644
--- a/intern/mantaflow/intern/MANTA_main.cpp
+++ b/intern/mantaflow/intern/MANTA_main.cpp
@@ -574,8 +574,8 @@ bool MANTA::runPythonString(vector<string> commands)
manta_main_module = PyImport_ImportModule("__main__");
}
- for (vector<std::string>::iterator it = commands.begin(); it != commands.end(); ++it) {
- std::string command = *it;
+ for (vector<string>::iterator it = commands.begin(); it != commands.end(); ++it) {
+ string command = *it;
PyObject *globals_dict = PyModule_GetDict(manta_main_module);
PyObject *return_value = PyRun_String(