diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-04-24 16:04:35 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-25 01:13:59 +0200 |
commit | 898e9492f79a7ad3bd6e53f3891eea214f929837 (patch) | |
tree | 8e7423e078fc1248038a62a7b1416c3894cd02e7 /Base/res/devel | |
parent | 0398e4a48a7e1cf72fdd89608ba487cdd2947176 (diff) | |
download | serenity-898e9492f79a7ad3bd6e53f3891eea214f929837.zip |
Base: clang-format the cpp-gui template project.
I noticed this was miss-formated when fixing up the clang-format
error in a different PR. I just ran `pre-commit run --all-files`
Diffstat (limited to 'Base/res/devel')
-rw-r--r-- | Base/res/devel/templates/cpp-gui/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Base/res/devel/templates/cpp-gui/main.cpp b/Base/res/devel/templates/cpp-gui/main.cpp index 35629bc8d3..fd17efddf4 100644 --- a/Base/res/devel/templates/cpp-gui/main.cpp +++ b/Base/res/devel/templates/cpp-gui/main.cpp @@ -1,8 +1,8 @@ -#include <stdio.h> #include <LibGUI/Application.h> -#include <LibGUI/Window.h> #include <LibGUI/Button.h> #include <LibGUI/MessageBox.h> +#include <LibGUI/Window.h> +#include <stdio.h> int main(int argc, char** argv) { |