diff options
| author | Juan Linietsky | 2014-12-16 22:33:35 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-12-16 22:33:35 -0300 |
| commit | d55f95e0d2a2f99a4130a33ad542c3682d0b92db (patch) | |
| tree | 5e413e2e81398254ac2e5d7421c5fd893ef537a7 /core/io | |
| parent | bcf27feb980aec593c7cb771984e46113cfad757 (diff) | |
| parent | 1664cd67101722f0955385ed6b463f534830aeed (diff) | |
| download | godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.tar.gz godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.tar.zst godot-d55f95e0d2a2f99a4130a33ad542c3682d0b92db.zip | |
Merge branch 'master' of https://github.com/okamstudio/godot
Diffstat (limited to 'core/io')
| -rw-r--r-- | core/io/http_client.cpp | 2 | ||||
| -rw-r--r-- | core/io/ip.cpp | 2 | ||||
| -rw-r--r-- | core/io/xml_parser.cpp | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/core/io/http_client.cpp b/core/io/http_client.cpp index 60a200af1..faead675d 100644 --- a/core/io/http_client.cpp +++ b/core/io/http_client.cpp @@ -29,6 +29,8 @@ #include "http_client.h" #include "io/stream_peer_ssl.h" +VARIANT_ENUM_CAST(HTTPClient::Status); + Error HTTPClient::connect_url(const String& p_url) { return OK; diff --git a/core/io/ip.cpp b/core/io/ip.cpp index d2a685f6b..6ef6b3118 100644 --- a/core/io/ip.cpp +++ b/core/io/ip.cpp @@ -31,7 +31,7 @@ #include "os/semaphore.h" #include "hash_map.h" - +VARIANT_ENUM_CAST(IP::ResolverStatus); /************* RESOLVER ******************/ diff --git a/core/io/xml_parser.cpp b/core/io/xml_parser.cpp index 5d3e4f61a..6306d2236 100644 --- a/core/io/xml_parser.cpp +++ b/core/io/xml_parser.cpp @@ -30,6 +30,8 @@ #include "print_string.h" //#define DEBUG_XML +VARIANT_ENUM_CAST(XMLParser::NodeType); + static bool _equalsn(const CharType* str1, const CharType* str2, int len) { int i; for(i=0; str1[i] && str2[i] && i < len; ++i) |
