summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlaim (Joël Lamotte) <142265+Klaim@users.noreply.github.com>2024-08-08 02:10:41 +0200
committerKlaim (Joël Lamotte) <142265+Klaim@users.noreply.github.com>2024-08-08 02:46:28 +0200
commit738859f49bf34b176116729f56dd2e57e2fd9b86 (patch)
treef793f5479b668555ae52f4a7eb32e7b438db4fb8
parent9da1e0cee1b7e364374b3a3a09829eed3f487d10 (diff)
downloadredot-cpp-738859f49bf34b176116729f56dd2e57e2fd9b86.tar.gz
removes warnings generated by GDCLASS usage
This change removes the warnings (unused parameters) coming from code injected by the GDCLASS macro. Contrary to warnings coming from the normal source code which can be suppressed with most compiles by specifying the include directories of this library as external or system, when the code is injected through a macro it is considered in the context of the user, which is the source code of user of the library. That forces the users to modify their code to hide the warnings coming from the mandatory `GDCLASS` here. That's why it's important to remove these warning from that specific macro and ideally any other macro that the user must use.
-rw-r--r--include/godot_cpp/classes/wrapped.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp
index 6d9bef7..0ffd783 100644
--- a/include/godot_cpp/classes/wrapped.hpp
+++ b/include/godot_cpp/classes/wrapped.hpp
@@ -179,7 +179,7 @@ struct EngineClassRegistration {
// every line of the macro different
#define GDCLASS(m_class, m_inherits) /***********************************************************************************************************************************************/ \
private: \
- void operator=(const m_class &p_rval) {} \
+ void operator=(const m_class & /*p_rval*/) {} \
friend class ::godot::ClassDB; \
friend class ::godot::Wrapped; \
\
@@ -316,7 +316,7 @@ public:
return ::godot::internal::create_c_property_list(plist_cpp, r_count); \
} \
\
- static void free_property_list_bind(GDExtensionClassInstancePtr p_instance, const GDExtensionPropertyInfo *p_list, uint32_t p_count) { \
+ static void free_property_list_bind(GDExtensionClassInstancePtr p_instance, const GDExtensionPropertyInfo *p_list, uint32_t /*p_count*/) { \
if (p_instance) { \
m_class *cls = reinterpret_cast<m_class *>(p_instance); \
cls->plist_owned.clear(); \
@@ -373,7 +373,7 @@ public:
} \
} \
\
- static void free(void *data, GDExtensionClassInstancePtr ptr) { \
+ static void free(void * /*data*/, GDExtensionClassInstancePtr ptr) { \
if (ptr) { \
m_class *cls = reinterpret_cast<m_class *>(ptr); \
cls->~m_class(); \
@@ -381,14 +381,14 @@ public:
} \
} \
\
- static void *_gde_binding_create_callback(void *p_token, void *p_instance) { \
+ static void *_gde_binding_create_callback(void * /*p_token*/, void * /*p_instance*/) { \
return nullptr; \
} \
\
- static void _gde_binding_free_callback(void *p_token, void *p_instance, void *p_binding) { \
+ static void _gde_binding_free_callback(void * /*p_token*/, void * /*p_instance*/, void * /*p_binding*/) { \
} \
\
- static GDExtensionBool _gde_binding_reference_callback(void *p_token, void *p_instance, GDExtensionBool p_reference) { \
+ static GDExtensionBool _gde_binding_reference_callback(void * /*p_token*/, void * /*p_instance*/, GDExtensionBool /*p_reference*/) { \
return true; \
} \
\