diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2022-09-18 01:14:45 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-18 18:30:05 -0700 |
commit | c214d31c5e7aeb0bf82ecb4a9c1cd528738c8461 (patch) | |
tree | 49c9c7813f0704ed6cd8a6a50f0a70bf541fd1cf /Userland/Libraries/LibGPU | |
parent | 30cca01e2442e9ac6dc38f5e8a1bb42d878d3266 (diff) | |
download | serenity-c214d31c5e7aeb0bf82ecb4a9c1cd528738c8461.zip |
Everywhere: Fix order of includes and #pragma once
Diffstat (limited to 'Userland/Libraries/LibGPU')
-rw-r--r-- | Userland/Libraries/LibGPU/Config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGPU/Config.h b/Userland/Libraries/LibGPU/Config.h index f3ab5e5c3f..30bebd41a1 100644 --- a/Userland/Libraries/LibGPU/Config.h +++ b/Userland/Libraries/LibGPU/Config.h @@ -4,10 +4,10 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <AK/Types.h> - #pragma once +#include <AK/Types.h> + namespace GPU { // FIXME: These 3 types were originally introduced in LibSoftGPU and are currently needed by the device interface. |