Remove extraneous semicolons

They cause a warning (-Wextra-semi) that can lead to a compile error
(-Werror).
This commit is contained in:
Shahbaz Youssefi
2019-06-25 12:08:10 -04:00
committed by Shahbaz Youssefi
parent 4e6b9ea329
commit 6cca0e983e
3 changed files with 3 additions and 3 deletions

View File

@@ -436,6 +436,6 @@ __inline void Block::addInstruction(std::unique_ptr<Instruction> inst)
parent.getParent().mapInstruction(raw_instruction);
}
}; // end spv namespace
} // end spv namespace
#endif // spvIR_H