From 6b0e2a25cf1e98d3f11d4e6c0305dd327048bbb8 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 27 Jun 2022 22:08:43 +0200 Subject: refactor: use int types from std namespace --- src/interfaces/component.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interfaces/component.hpp') 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; }; -- cgit v1.2.3-18-g5258