diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-01 17:06:48 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-04 16:16:05 +0200 |
commit | b85dfd990e26ffb22643d78e5f00ba135d1f97e7 (patch) | |
tree | 49a5a867b3f89af045b565c832716821b6f91a98 /core/os | |
parent | 865b62b1cddbb7989bc520eed2d8428c6923fee9 (diff) |
GDScript completion: Handle quote style ad-hoc to remove editor dependency
`core` and `scene` shouldn't depend on `editor`, so they can't query this style
setting in `get_argument_options`. But we can handle it after the fact in
GDScript's completion code.
Also cleans up a couple extra unused invalid includes in `core`.
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 69366f688c..12f85858c3 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -36,7 +36,6 @@ #include "core/io/file_access.h" #include "core/os/midi_driver.h" #include "core/version_generated.gen.h" -#include "servers/audio_server.h" #include <stdarg.h> |