Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/opcode_split_test.cpp')
-rw-r--r--test/opcode_split_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/opcode_split_test.cpp b/test/opcode_split_test.cpp
index 43fedb385..e8a67b681 100644
--- a/test/opcode_split_test.cpp
+++ b/test/opcode_split_test.cpp
@@ -18,7 +18,7 @@ namespace spvtools {
namespace {
TEST(OpcodeSplit, Default) {
- uint32_t word = spvOpcodeMake(42, (SpvOp)23);
+ uint32_t word = spvOpcodeMake(42, (spv::Op)23);
uint16_t wordCount = 0;
uint16_t opcode;
spvOpcodeSplit(word, &wordCount, &opcode);