Skip to content

Commit

Permalink
Fix warning. (microsoft#1820)
Browse files Browse the repository at this point in the history
  • Loading branch information
python3kgae authored Jan 4, 2019
1 parent 48595a3 commit 3faf581
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/DXIL/DxilSubobject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ void DxilSubobject::CopyUnionedContents(const DxilSubobject &other) {
HitGroup.ClosestHit = other.HitGroup.ClosestHit;
HitGroup.Intersection = other.HitGroup.Intersection;
break;
default:
DXASSERT(0, "invalid kind");
break;
}
}

Expand Down

0 comments on commit 3faf581

Please sign in to comment.