Remove stdint.h from some files

This commit is contained in:
Programneer 2024-09-20 08:45:28 +02:00
parent 0a4aedb360
commit ba8da8a587
9 changed files with 0 additions and 17 deletions

View file

@ -35,8 +35,6 @@
#include "core/debugger/script_debugger.h"
#include "core/io/resource_loader.h"
#include <stdint.h>
ScriptLanguage *ScriptServer::_languages[MAX_LANGUAGES];
int ScriptServer::_language_count = 0;
bool ScriptServer::languages_ready = false;

View file

@ -35,8 +35,6 @@
#include "core/config/project_settings.h"
#include "core/os/os.h"
#include <stdint.h> // INT32_MAX
#include <functiondiscoverykeys.h>
#include <wrl/client.h>

View file

@ -61,8 +61,6 @@
#include "editor/editor_paths.h"
#endif
#include <stdint.h>
///////////////////////////
GDScriptNativeClass::GDScriptNativeClass(const StringName &p_name) {

View file

@ -66,8 +66,6 @@
#include "editor/node_dock.h"
#endif
#include <stdint.h>
// Types that will be skipped over (in favor of their base types) when setting up instance bindings.
// This must be a superset of `ignored_types` in bindings_generator.cpp.
const Vector<String> ignored_types = {};

View file

@ -38,7 +38,6 @@ extern "C" {
#endif
#include <stdbool.h>
#include <stdint.h>
// This is taken from the old GDNative, which was removed.

View file

@ -42,8 +42,6 @@
#include "core/variant/dictionary.h"
#include "core/variant/variant.h"
#include <stdint.h>
class CSharpScript;
namespace GDMonoCache {

View file

@ -37,8 +37,6 @@
#include "core/os/os.h"
#endif
#include <stdint.h>
#ifdef DEBUG_ENABLED
_FORCE_INLINE_ void SceneMultiplayer::_profile_bandwidth(const String &p_what, int p_value) {
if (EngineDebugger::is_profiling("multiplayer:bandwidth")) {

View file

@ -33,8 +33,6 @@
#include "core/debugger/engine_debugger.h"
#include "core/io/marshalls.h"
#include <stdint.h>
#ifdef DEBUG_ENABLED
#include "core/os/os.h"
#endif

View file

@ -43,8 +43,6 @@
#include "scene/resources/packed_scene.h"
#include "viewport.h"
#include <stdint.h>
int Node::orphan_node_count = 0;
thread_local Node *Node::current_process_thread_group = nullptr;