diff options
| author | Rémi Verschelde | 2016-07-09 14:33:30 +0200 |
|---|---|---|
| committer | GitHub | 2016-07-09 14:33:30 +0200 |
| commit | 3a70d4a072fa170ae927e2b416861ccd395f92d2 (patch) | |
| tree | 0e5a9055880d02055dcc4e00dea1c8b5d9848ba9 /core/ustring.cpp | |
| parent | 0e119a91640acbc7643ff1dd1049bf12ca302d21 (diff) | |
| parent | f40f360a2c4ca8e6f2a651dbcca3ae82e2abe7a1 (diff) | |
| download | godot-3a70d4a072fa170ae927e2b416861ccd395f92d2.tar.gz godot-3a70d4a072fa170ae927e2b416861ccd395f92d2.tar.zst godot-3a70d4a072fa170ae927e2b416861ccd395f92d2.zip | |
Merge pull request #5589 from akien-mga/pr-unused-var
Removing some more unused vars and dead code
Diffstat (limited to '')
| -rw-r--r-- | core/ustring.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 3c22de35f..6788ada1b 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3836,7 +3836,6 @@ String String::lpad(int min_length, const String& character) const { String String::sprintf(const Array& values, bool* error) const { String formatted; CharType* self = (CharType*)c_str(); - int num_items = values.size(); bool in_format = false; int value_index = 0; int min_chars; |
