aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/component.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-27 22:08:43 +0200
committerHampusM <hampus@hampusmat.com>2022-06-27 22:08:43 +0200
commit6b0e2a25cf1e98d3f11d4e6c0305dd327048bbb8 (patch)
treea62c23f4e66949fe109e07dec95ad3a3e5229a7c /src/interfaces/component.hpp
parent9d0fe1b42c9f6a5c09bab444966d347a71a4b905 (diff)
refactor: use int types from std namespace
Diffstat (limited to 'src/interfaces/component.hpp')
-rw-r--r--src/interfaces/component.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/component.hpp b/src/interfaces/component.hpp
index 2f62c95..bf0680a 100644
--- a/src/interfaces/component.hpp
+++ b/src/interfaces/component.hpp
@@ -29,7 +29,7 @@ public:
virtual void set_need_render(bool need_render) noexcept = 0;
- [[nodiscard]] virtual auto get_foreground_color() const noexcept -> uint32_t = 0;
+ [[nodiscard]] virtual auto get_foreground_color() const noexcept -> std::uint32_t = 0;
- [[nodiscard]] virtual auto get_background_color() const noexcept -> uint32_t = 0;
+ [[nodiscard]] virtual auto get_background_color() const noexcept -> std::uint32_t = 0;
};