mirror of
https://git.suyu.dev/suyu/sirit.git
synced 2025-12-25 00:36:36 +01:00
Replace "auto const" with "auto"
This commit is contained in:
parent
f581df0935
commit
6a2d1da742
7 changed files with 23 additions and 23 deletions
|
|
@ -11,7 +11,7 @@ namespace Sirit {
|
|||
|
||||
Ref Module::Decorate(Ref target, spv::Decoration decoration,
|
||||
const std::vector<Operand*>& literals) {
|
||||
auto const op{new Op(spv::Op::OpDecorate)};
|
||||
auto op{new Op(spv::Op::OpDecorate)};
|
||||
op->Add(target);
|
||||
AddEnum(op, decoration);
|
||||
op->Sink(literals);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue