The old return type did not allow for correct error reporting and was
causing a compiler warning.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
- Build Status
Buildable 25055 Build 25054: arc lint + arc unit
Event Timeline
lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp | ||
---|---|---|
124 | I know its not really part of this change, but IIUC this is considered overuse of auto in the llvm style. auto is only supposed to be used in cases where the type would otherwise be redundant (i.e. cast<>, dyn_cast<>, make_unique<> etc). |
I know its not really part of this change, but IIUC this is considered overuse of auto in the llvm style. auto is only supposed to be used in cases where the type would otherwise be redundant (i.e. cast<>, dyn_cast<>, make_unique<> etc).