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

@@ -10,7 +10,7 @@
namespace Sirit {
Ref Module::Name(Ref target, const std::string& name) {
auto const op{new Op(spv::Op::OpName)};
auto op{new Op(spv::Op::OpName)};
op->Add(target);
op->Add(name);
debug.push_back(std::unique_ptr<Op>(op));