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::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);