Remove unimplemented methods

This commit is contained in:
Marcel Admiraal
2021-10-21 17:26:51 +01:00
parent 8688b97dda
commit 87a4ba492e
66 changed files with 2 additions and 171 deletions

View File

@@ -1139,15 +1139,12 @@ void NativeScriptLanguage::profiling_start() {
MutexLock lock(mutex);
profile_data.clear();
profiling = true;
#endif
}
void NativeScriptLanguage::profiling_stop() {
#ifdef DEBUG_ENABLED
MutexLock lock(mutex);
profiling = false;
#endif
}

View File

@@ -269,7 +269,6 @@ private:
};
Map<StringName, ProfileData> profile_data;
bool profiling = false;
public:
// These two maps must only be touched on the main thread
@@ -295,8 +294,6 @@ public:
return singleton;
}
void _hacky_api_anchor();
_FORCE_INLINE_ void set_language_index(int p_idx) { lang_idx = p_idx; }
#ifndef NO_THREADS