Ver Fonte

Silence unusued variable warning when building without asserts (#1073)

* Silence unusued variable warning when building without asserts

* Spaces instead of tabs

* Replaced DXASSERT with DXASSERT_LOCALVAR instead
Sebastian Tafuri há 7 anos atrás
pai
commit
44dff38588
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lib/HLSL/HLMatrixLowerPass.cpp

+ 1 - 1
lib/HLSL/HLMatrixLowerPass.cpp

@@ -1206,7 +1206,7 @@ void HLMatrixLowerPass::TranslateMatMajorCast(CallInst *matInst,
     Type *castTy = GetMatrixInfo(castInst->getType(), castCol, castRow);
     unsigned srcCol, srcRow;
     Type *srcTy = GetMatrixInfo(matInst->getType(), srcCol, srcRow);
-    DXASSERT(srcTy == castTy, "type must match");
+    DXASSERT_LOCALVAR((castTy, srcTy), srcTy == castTy, "type must match");
     DXASSERT(castCol == srcRow && castRow == srcCol, "col row must match");
     col = srcCol;
     row = srcRow;