Skip to content

Commit c8c0738

Browse files
committed
Fix parentheses around assignment warning for GCC13
1 parent b8dbd19 commit c8c0738

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pxr/usd/usd/primDefinition.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ UsdPrimDefinition::_FindOrCreateSpecForComposition(
405405
// we create a new layer for this prim definition to write its composed
406406
// properties and metadata.
407407
if (_composedPropertyLayer) {
408-
if (destSpec = _composedPropertyLayer->GetObjectAtPath(
409-
primPath.AppendProperty(propName))) {
408+
if ((destSpec = _composedPropertyLayer->GetObjectAtPath(
409+
primPath.AppendProperty(propName)))) {
410410
return destSpec;
411411
}
412412
} else {

0 commit comments

Comments
 (0)