Skip to content

Commit feb5700

Browse files
Apply missing clang-format
1 parent ad4f795 commit feb5700

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

audio/midi_drivers/CoreAudioMidiDriver.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,5 +287,4 @@ void CoreAudioMidiDriver::increaseThreadPriority() {
287287
pthread_setschedparam(self, policy, &param);
288288
}
289289

290-
291290
#endif // USE_CORE_AUDIO_MIDI

audio/midi_drivers/CoreMidiDriver.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,4 @@ void CoreMidiDriver::increaseThreadPriority() {
205205
pthread_setschedparam(self, policy, &param);
206206
}
207207

208-
209-
210208
#endif // USE_CORE_MIDI

audio/midi_drivers/WindowsMidiDriver.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,4 @@ void WindowsMidiDriver::increaseThreadPriority() {
240240
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_HIGHEST);
241241
}
242242

243-
244-
245243
#endif // USE_WINDOWS_MIDI

msvcstuff/vs2019/msvc_include.h

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@
2121
// except to indicate a function is not
2222
// __declspec(nothrow)
2323

24-
# pragma warning (disable : 4267 4244) // conversion from 'type' to 'type' possible loss of data
25-
# pragma warning(disable : 4805) // unsafe mix of type 'int' and type 'bool' in operation
24+
# pragma warning(disable : 4267 4244) // conversion from 'type' to 'type'
25+
// possible loss of data
26+
# pragma warning(disable : 4805) // unsafe mix of type 'int' and type
27+
// 'bool' in operation
2628

2729
#endif
2830

@@ -35,11 +37,12 @@
3537

3638
#if _MSC_VER <= 1938
3739

38-
#include <algorithm>
39-
#include <cctype>
40+
# include <algorithm>
41+
# include <cctype>
4042

41-
# pragma warning(disable : 4091) // 'typedef ' : ignored on left of 'tagGPFIDL_FLAGS' when no variable
42-
# pragma warning(disable : 4309) // truncation of constant value
43+
# pragma warning(disable : 4091) // 'typedef ' : ignored on left of
44+
// 'tagGPFIDL_FLAGS' when no variable
45+
# pragma warning(disable : 4309) // truncation of constant value
4346

4447
/*
4548
namespace std {

0 commit comments

Comments
 (0)