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:
Diffstat (limited to 'source/blender/io/usd/intern/usd_reader_stage.cc')
-rw-r--r--source/blender/io/usd/intern/usd_reader_stage.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/io/usd/intern/usd_reader_stage.cc b/source/blender/io/usd/intern/usd_reader_stage.cc
index 89dd7098f6c..0533cbbffee 100644
--- a/source/blender/io/usd/intern/usd_reader_stage.cc
+++ b/source/blender/io/usd/intern/usd_reader_stage.cc
@@ -353,7 +353,8 @@ void USDStageReader::import_all_materials(Main *bmain)
* materials. */
void USDStageReader::fake_users_for_unbound_materials()
{
- std::map<std::string, std::string>::const_iterator mat_name_it = settings_.usd_path_to_mat_name.begin();
+ std::map<std::string, std::string>::const_iterator mat_name_it =
+ settings_.usd_path_to_mat_name.begin();
for (; mat_name_it != settings_.usd_path_to_mat_name.end(); ++mat_name_it) {
std::map<std::string, Material *>::iterator mat_it = settings_.mat_name_to_mat.find(
mat_name_it->second);