diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/io/http_client_tcp.h | 4 | ||||
-rw-r--r-- | core/object/object.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/core/io/http_client_tcp.h b/core/io/http_client_tcp.h index 31ad9143db..886ad0ef48 100644 --- a/core/io/http_client_tcp.h +++ b/core/io/http_client_tcp.h @@ -58,8 +58,8 @@ private: Vector<uint8_t> chunk; int chunk_left = 0; bool chunk_trailer_part = false; - int body_size = -1; - int body_left = 0; + int64_t body_size = -1; + int64_t body_left = 0; bool read_until_eof = false; Ref<StreamPeerTCP> tcp_connection; diff --git a/core/object/object.h b/core/object/object.h index ab94f2aa00..4fe2dff19b 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -359,9 +359,6 @@ public: } \ return category; \ } \ - static String inherits_static() { \ - return String(#m_inherits); \ - } \ virtual bool is_class(const String &p_class) const override { \ if (_get_extension() && _get_extension()->is_class(p_class)) { \ return true; \ |