Replace "auto const" with "auto"

This commit is contained in:
ReinUsesLisp
2018-10-23 05:05:40 -03:00
parent f581df0935
commit 6a2d1da742
7 changed files with 23 additions and 23 deletions

View File

@@ -11,7 +11,7 @@ namespace Sirit {
Ref Module::Variable(Ref result_type, spv::StorageClass storage_class,
Ref initializer) {
auto const op{new Op(spv::Op::OpVariable, bound++, result_type)};
auto op{new Op(spv::Op::OpVariable, bound++, result_type)};
AddEnum(op, storage_class);
if (initializer) {
op->Add(initializer);