-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing clang-format CI #3
base: master
Are you sure you want to change the base?
Conversation
4dfe402
to
d29e9b9
Compare
Cpp-Linter Report
|
d29e9b9
to
fe87575
Compare
fe87575
to
e950282
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cpp-linter Review
Used clang-format v16.0.6
Click here for the full clang-format patch
diff --git a/softmmu/vl.c b/softmmu/vl.c
index 447eee7..5582986 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -2820 +2820,2 @@ void qemu_init(int argc, char **argv)
- } if (g_config.general.show_welcome) {
+ }
+ if (g_config.general.show_welcome) {
@@ -2835 +2836 @@ void qemu_init(int argc, char **argv)
- fake_argv[fake_argc++] = strdup("-m");
+ fake_argv[fake_argc++] = strdup("-m");
Have any feedback or feature suggestions? Share it here.
|
||
if (flashrom_override_path) { | ||
assert(!xemu_check_file(flashrom_override_path)); | ||
} if (g_config.general.show_welcome) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-format suggestion
} if (g_config.general.show_welcome) { | |
} | |
if (g_config.general.show_welcome) { |
@@ -2820,7 +2832,7 @@ | |||
} | |||
|
|||
int mem = ((int)g_config.sys.mem_limit + 1) * 64; | |||
fake_argv[fake_argc++] = strdup("-m"); | |||
fake_argv[fake_argc++] = strdup("-m"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-format suggestion
fake_argv[fake_argc++] = strdup("-m"); | |
fake_argv[fake_argc++] = strdup("-m"); |
No description provided.