mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-04-29 06:30:39 +03:00
Fix -Wunused-variable (#3224)
This commit is contained in:
parent
91aeb0e674
commit
637a8af264
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ void CompoundAsmStatement_toIR(CompoundAsmStatement *stmt, IRState *p) {
|
|||
}
|
||||
|
||||
// if internal, no special handling is necessary, skip
|
||||
std::vector<Identifier *>::const_iterator it, end;
|
||||
std::vector<Identifier *>::const_iterator end;
|
||||
end = asmblock->internalLabels.end();
|
||||
bool skip = false;
|
||||
for (auto il : asmblock->internalLabels) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue