mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 05:52:38 +00:00
linter: Apply clang-format 19.1 formatting
find ./Source/ -name '*.cpp' -o -name '*.h' | xargs clang-format-19 -i
This commit is contained in:
parent
d9d0082018
commit
2c54ee94c1
41 changed files with 159 additions and 212 deletions
|
@ -209,23 +209,22 @@ int main(int argc, char* argv[])
|
|||
parser->add_option("-p", "--platform")
|
||||
.action("store")
|
||||
.help("Window platform to use [%choices]")
|
||||
.choices({
|
||||
"headless"
|
||||
.choices({"headless"
|
||||
#ifdef __linux__
|
||||
,
|
||||
"fbdev"
|
||||
,
|
||||
"fbdev"
|
||||
#endif
|
||||
#if HAVE_X11
|
||||
,
|
||||
"x11"
|
||||
,
|
||||
"x11"
|
||||
#endif
|
||||
#ifdef _WIN32
|
||||
,
|
||||
"win32"
|
||||
,
|
||||
"win32"
|
||||
#endif
|
||||
#ifdef __APPLE__
|
||||
,
|
||||
"macos"
|
||||
,
|
||||
"macos"
|
||||
#endif
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue