mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
Rename empty() to is_empty()
This commit is contained in:
@@ -230,7 +230,7 @@ private:
|
||||
_FORCE_INLINE_ bool _is_at_end() { return position >= length; }
|
||||
_FORCE_INLINE_ char32_t _peek(int p_offset = 0) { return position + p_offset >= 0 && position + p_offset < length ? _current[p_offset] : '\0'; }
|
||||
int indent_level() const { return indent_stack.size(); }
|
||||
bool has_error() const { return !error_stack.empty(); }
|
||||
bool has_error() const { return !error_stack.is_empty(); }
|
||||
Token pop_error();
|
||||
char32_t _advance();
|
||||
void _skip_whitespace();
|
||||
|
||||
Reference in New Issue
Block a user