diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 14:16:32 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-27 14:16:32 +0200 |
commit | c90bfcb1c6bd0640cb6a7effc0fadc03462e937e (patch) | |
tree | a4fb1c3f273fbdcd7056495af94ad4b1c1d46901 /core/class_db.h | |
parent | 21e53c42672e46c74bce6246fde16f4200c48163 (diff) |
Re-apply clang-format to all files
Some badly formatted code has managed to pass through our CI...
Diffstat (limited to 'core/class_db.h')
-rw-r--r-- | core/class_db.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/class_db.h b/core/class_db.h index 0943cd36cc..f28710361d 100644 --- a/core/class_db.h +++ b/core/class_db.h @@ -457,7 +457,8 @@ public: } type->method_map[p_name] = bind; #ifdef DEBUG_METHODS_ENABLED -// bind->set_return_type("Variant"); + // FIXME: <reduz> set_return_type is no longer in MethodBind, so I guess it should be moved to vararg method bind + //bind->set_return_type("Variant"); type->method_order.push_back(p_name); #endif |