mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Removed unnecessary assignments
This commit is contained in:
parent
4717d37bfa
commit
738d2ab969
37 changed files with 65 additions and 128 deletions
|
|
@ -1187,9 +1187,7 @@ Error GDTokenizerBuffer::set_code_buffer(const Vector<uint8_t> &p_buffer) {
|
|||
int line_count = decode_uint32(&buf[16]);
|
||||
int token_count = decode_uint32(&buf[20]);
|
||||
|
||||
const uint8_t *b = buf;
|
||||
|
||||
b = &buf[24];
|
||||
const uint8_t *b = &buf[24];
|
||||
total_len -= 24;
|
||||
|
||||
identifiers.resize(identifier_count);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue