Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ea2c3df authored by Nergi Rahardi's avatar Nergi Rahardi
Browse files

Arrange include ordering in input/KeyLayoutMap.h

utils/ lib has a dependency to #define constant (CONSTEXPR),
which (may) gets #undef from other libs. There are many ways
to fix this issue, but the most suitable one is to arrange
the #include ordering, which also follows principle of
"including the least-commonly used headers first".

Bug: 287575652
Test: m
Change-Id: I0f6841a083c37bc9245602fcc29a007f5ddc6894
parent eec4219f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,13 +17,13 @@
#pragma once

#include <android-base/result.h>
#include <input/InputDevice.h>

#include <stdint.h>
#include <utils/Errors.h>
#include <utils/Tokenizer.h>
#include <set>

#include <input/InputDevice.h>

namespace android {

struct AxisInfo {