clang-format: Increase column limit from 80 to 120

This commit is contained in:
Ryan Foster
2024-10-04 17:33:58 -04:00
parent 109f64c446
commit a1fbf1015f
736 changed files with 22684 additions and 45435 deletions

View File

@@ -46,8 +46,7 @@ bool obs_module_load(void)
minimum.minor = 0;
minimum.build = 19041;
minimum.revis = 0;
const bool process_filter_supported =
win_version_compare(&ver, &minimum) >= 0;
const bool process_filter_supported = win_version_compare(&ver, &minimum) >= 0;
RegisterWASAPIInput();
RegisterWASAPIDeviceOutput();
@@ -55,8 +54,7 @@ bool obs_module_load(void)
RegisterWASAPIProcessOutput();
notify = new WASAPINotify();
notify->AddDefaultDeviceChangedCallback(
obs_current_module(), default_device_changed_callback);
notify->AddDefaultDeviceChangedCallback(obs_current_module(), default_device_changed_callback);
return true;
}