You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
This commit is contained in:
@@ -58,7 +58,6 @@ REGSAM _get_bitness_sam() {
|
||||
}
|
||||
|
||||
LONG _RegOpenKey(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult) {
|
||||
|
||||
LONG res = RegOpenKeyExW(hKey, lpSubKey, 0, KEY_READ, phkResult);
|
||||
|
||||
if (res != ERROR_SUCCESS)
|
||||
@@ -68,7 +67,6 @@ LONG _RegOpenKey(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult) {
|
||||
}
|
||||
|
||||
LONG _RegKeyQueryString(HKEY hKey, const String &p_value_name, String &r_value) {
|
||||
|
||||
Vector<WCHAR> buffer;
|
||||
buffer.resize(512);
|
||||
DWORD dwBufferSize = buffer.size();
|
||||
@@ -92,7 +90,6 @@ LONG _RegKeyQueryString(HKEY hKey, const String &p_value_name, String &r_value)
|
||||
}
|
||||
|
||||
LONG _find_mono_in_reg(const String &p_subkey, MonoRegInfo &r_info, bool p_old_reg = false) {
|
||||
|
||||
HKEY hKey;
|
||||
LONG res = _RegOpenKey(HKEY_LOCAL_MACHINE, p_subkey.c_str(), &hKey);
|
||||
|
||||
@@ -128,7 +125,6 @@ cleanup:
|
||||
}
|
||||
|
||||
LONG _find_mono_in_reg_old(const String &p_subkey, MonoRegInfo &r_info) {
|
||||
|
||||
String default_clr;
|
||||
|
||||
HKEY hKey;
|
||||
@@ -150,7 +146,6 @@ cleanup:
|
||||
}
|
||||
|
||||
MonoRegInfo find_mono() {
|
||||
|
||||
MonoRegInfo info;
|
||||
|
||||
if (_find_mono_in_reg("Software\\Mono", info) == ERROR_SUCCESS)
|
||||
@@ -163,7 +158,6 @@ MonoRegInfo find_mono() {
|
||||
}
|
||||
|
||||
String find_msbuild_tools_path() {
|
||||
|
||||
String msbuild_tools_path;
|
||||
|
||||
// Try to find 15.0 with vswhere
|
||||
|
||||
Reference in New Issue
Block a user