You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Removed unnecessary assignments
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user