diff options
| author | Rémi Verschelde | 2017-04-10 23:08:19 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2017-04-20 12:14:34 +0200 |
| commit | 99529fb80dd4914807d89dafc82087da7b4c26c2 (patch) | |
| tree | a62fd6650bf56b511f746dfb5c766868cf032cfb /scene/main/http_request.cpp | |
| parent | 22b9c0207bf3a50bcc0db6df8af5ec2d8631abcc (diff) | |
| download | godot-99529fb80dd4914807d89dafc82087da7b4c26c2.tar.gz godot-99529fb80dd4914807d89dafc82087da7b4c26c2.tar.zst godot-99529fb80dd4914807d89dafc82087da7b4c26c2.zip | |
Move VERSION_MKSTRING logic to version.h
Fixes a bug where the VERSION_PATCH define is not yet in scope if
typedefs.h is included before version.h at compilation time.
(cherry picked from commit 3b687c5474113b64f186388883ca85cdfe6523d4)
Diffstat (limited to '')
| -rw-r--r-- | scene/main/http_request.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/main/http_request.cpp b/scene/main/http_request.cpp index 783afc8b5..a9b2dba18 100644 --- a/scene/main/http_request.cpp +++ b/scene/main/http_request.cpp @@ -29,6 +29,8 @@ /*************************************************************************/ #include "http_request.h" +#include "version.h" + void HTTPRequest::_redirect_request(const String &p_new_url) { } |
