Remove extraneous semicolons
They cause a warning (-Wextra-semi) that can lead to a compile error (-Werror).
This commit is contained in:
parent
4e6b9ea329
commit
6cca0e983e
3 changed files with 3 additions and 3 deletions
|
|
@ -195,7 +195,7 @@ private:
|
|||
// Header access & set methods
|
||||
spirword_t magic() const { return spv[0]; } // return magic number
|
||||
spirword_t bound() const { return spv[3]; } // return Id bound from header
|
||||
spirword_t bound(spirword_t b) { return spv[3] = b; };
|
||||
spirword_t bound(spirword_t b) { return spv[3] = b; }
|
||||
spirword_t genmagic() const { return spv[2]; } // generator magic
|
||||
spirword_t genmagic(spirword_t m) { return spv[2] = m; }
|
||||
spirword_t schemaNum() const { return spv[4]; } // schema number from header
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue