1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

Remove unused or set-but-not-read variables

This commit is contained in:
Michał Janiszewski
2016-09-07 12:39:29 +00:00
committed by Ted John
parent a48976cc6b
commit 163e314379
22 changed files with 12 additions and 99 deletions

View File

@@ -230,7 +230,6 @@ namespace String
utf8 * Trim(utf8 * str)
{
utf8 * firstNonWhitespace = nullptr;
utf8 * lastNonWhitespace = nullptr;
codepoint_t codepoint;
utf8 * ch = str;
@@ -243,7 +242,6 @@ namespace String
{
firstNonWhitespace = ch;
}
lastNonWhitespace = ch;
}
ch = nextCh;
}