PoolVector is gone, replaced by Vector

Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are
sugar for `Vector<Type>`.
This commit is contained in:
Juan Linietsky
2020-02-17 18:06:54 -03:00
committed by Juan Linietsky
parent fb8c93c10b
commit 3205a92ad8
406 changed files with 5314 additions and 8271 deletions
+3 -3
View File
@@ -73,12 +73,12 @@ private:
bool request_sent;
Ref<HTTPClient> client;
PoolByteArray body;
PackedByteArray body;
volatile bool use_threads;
bool got_response;
int response_code;
PoolVector<String> response_headers;
Vector<String> response_headers;
String download_to_file;
@@ -108,7 +108,7 @@ private:
Thread *thread;
void _request_done(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data);
void _request_done(int p_status, int p_code, const PackedStringArray &headers, const PackedByteArray &p_data);
static void _thread_func(void *p_userdata);
protected: