mirror of
https://github.com/godotengine/godot
synced 2024-11-02 09:38:07 +00:00
Move definition of const int ERROR_CODE to be reachable by all functions.
This commit is contained in:
parent
958254ec3e
commit
c4404e2918
1 changed files with 3 additions and 1 deletions
|
@ -32,14 +32,16 @@
|
|||
|
||||
#include "modules/modules_enabled.gen.h"
|
||||
|
||||
const int ERROR_CODE = 77;
|
||||
|
||||
#ifdef MODULE_REGEX_ENABLED
|
||||
|
||||
#include "modules/regex/regex.h"
|
||||
|
||||
#include "core/os/time.h"
|
||||
#include "core/templates/hash_map.h"
|
||||
#include "core/templates/list.h"
|
||||
|
||||
const int ERROR_CODE = 77;
|
||||
const int CONVERSION_MAX_FILE_SIZE = 1024 * 1024 * 4; // 4 MB
|
||||
|
||||
static const char *enum_renames[][2] = {
|
||||
|
|
Loading…
Reference in a new issue