mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Add do..while(0) wrappers to macros without one.
- Add do..while(0) wrapper to ERR_FAIL_NULL macros. - Add do..while(0) wrapper to ERR_FAIL_COND macros. - Add do..while(0) wrapper to ERR_CONTINUE macros. - Add do..while(0) wrapper to ERR_BREAK macros. - Add do..while(0) wrapper to CRASH_COND macros. - Add do..while(0) wrapper to ERR_FAIL macros. - Add do..while(0) wrapper to ERR_PRINT macros. - Add do..while(0) wrapper to WARN_PRINT macros. - Add do..while(0) wrapper to WARN_DEPRECATED macros. - Add do..while(0) wrapper to CRASH_NOW macros.
This commit is contained in:
parent
f0db13502a
commit
6d69cd40bd
10 changed files with 88 additions and 88 deletions
|
@ -63,7 +63,7 @@ void EditorVCSInterface::_bind_methods() {
|
|||
|
||||
bool EditorVCSInterface::_initialize(String p_project_root_path) {
|
||||
|
||||
WARN_PRINT("Selected VCS addon does not implement an initialization function. This warning will be suppressed.")
|
||||
WARN_PRINT("Selected VCS addon does not implement an initialization function. This warning will be suppressed.");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue