diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 15:26:14 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 15:26:14 +0200 |
commit | 3b4504afea33e4b35ac18ac1ce9c2c2726a46573 (patch) | |
tree | cdc81aa9822c86e1ea19ffb8f303360a8dab8af1 /modules/gdscript/gdscript_lambda_callable.cpp | |
parent | 12e8bc558d56cb319bde0ca7ac1366675b25e232 (diff) | |
parent | 25b2f1780a9c7d7ae5579cc87c89b0c7e2baa14d (diff) | |
download | redot-engine-3b4504afea33e4b35ac18ac1ce9c2c2726a46573.tar.gz |
Merge pull request #75944 from akien-mga/style-modules-includes
Style: Harmonize header includes in modules
Diffstat (limited to 'modules/gdscript/gdscript_lambda_callable.cpp')
-rw-r--r-- | modules/gdscript/gdscript_lambda_callable.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_lambda_callable.cpp b/modules/gdscript/gdscript_lambda_callable.cpp index e9fe17bb17..9e14e43a58 100644 --- a/modules/gdscript/gdscript_lambda_callable.cpp +++ b/modules/gdscript/gdscript_lambda_callable.cpp @@ -30,9 +30,10 @@ #include "gdscript_lambda_callable.h" -#include "core/templates/hashfuncs.h" #include "gdscript.h" +#include "core/templates/hashfuncs.h" + bool GDScriptLambdaCallable::compare_equal(const CallableCustom *p_a, const CallableCustom *p_b) { // Lambda callables are only compared by reference. return p_a == p_b; |