[Bf-blender-cvs] [0bfece3525c] tmp-usd-mak-c87f6242: Fixed compile error.

Michael Kowalski noreply at git.blender.org
Mon May 2 05:29:12 CEST 2022


Commit: 0bfece3525ce46fa8e41765ccf75f746ff0f6aca
Author: Michael Kowalski
Date:   Sun May 1 21:52:19 2022 -0400
Branches: tmp-usd-mak-c87f6242
https://developer.blender.org/rB0bfece3525ce46fa8e41765ccf75f746ff0f6aca

Fixed compile error.

===================================================================

M	source/blender/io/usd/intern/usd_umm.cc

===================================================================

diff --git a/source/blender/io/usd/intern/usd_umm.cc b/source/blender/io/usd/intern/usd_umm.cc
index 95d7774d325..c648c2f2c23 100644
--- a/source/blender/io/usd/intern/usd_umm.cc
+++ b/source/blender/io/usd/intern/usd_umm.cc
@@ -74,7 +74,7 @@ static std::string anchor_relative_path(pxr::UsdStagePtr stage, const std::strin
   }
 
 #if PXR_VERSION >= 2111
-  return pxr::ArGetResolver().CreateIdentifier(asset_path, ArResolvedPath(stage_path));
+  return pxr::ArGetResolver().CreateIdentifier(asset_path, pxr::ArResolvedPath(stage_path));
 #else
   return pxr::ArGetResolver().AnchorRelativePath(stage_path, asset_path);
 #endif



More information about the Bf-blender-cvs mailing list