mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Some code changed with Clang-Tidy
This commit is contained in:
parent
5c66771e3e
commit
4e5310cc60
175 changed files with 467 additions and 674 deletions
|
@ -2898,10 +2898,7 @@ void CSharpScript::update_exports() {
|
|||
}
|
||||
|
||||
bool CSharpScript::has_script_signal(const StringName &p_signal) const {
|
||||
if (_signals.has(p_signal))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
return _signals.has(p_signal);
|
||||
}
|
||||
|
||||
void CSharpScript::get_script_signal_list(List<MethodInfo> *r_signals) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue