Merge pull request #4697 from lioncash/copy5
ips_layer: Eliminate a redundant copy in Parse()
This commit is contained in:
commit
c07fd2898b
|
@ -245,9 +245,11 @@ void IPSwitchCompiler::Parse() {
|
||||||
|
|
||||||
// Read rest of patch
|
// Read rest of patch
|
||||||
while (true) {
|
while (true) {
|
||||||
if (i + 1 >= lines.size())
|
if (i + 1 >= lines.size()) {
|
||||||
break;
|
break;
|
||||||
const auto patch_line = lines[++i];
|
}
|
||||||
|
|
||||||
|
const auto& patch_line = lines[++i];
|
||||||
|
|
||||||
// Start of new patch
|
// Start of new patch
|
||||||
if (StartsWith(patch_line, "@enabled") || StartsWith(patch_line, "@disabled")) {
|
if (StartsWith(patch_line, "@enabled") || StartsWith(patch_line, "@disabled")) {
|
||||||
|
|
Reference in New Issue