From 307e4eb4b3e0f245b85312e0bd028d748f94b740 Mon Sep 17 00:00:00 2001 From: LiAuTraver <63725840+LiAuTraver@users.noreply.github.com> Date: Thu, 27 Jun 2024 19:07:10 +0800 Subject: [PATCH] add missing include guard for screen/pixel.hpp (#890) --- include/ftxui/screen/pixel.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ftxui/screen/pixel.hpp b/include/ftxui/screen/pixel.hpp index 7545d1e..8ab686b 100644 --- a/include/ftxui/screen/pixel.hpp +++ b/include/ftxui/screen/pixel.hpp @@ -1,6 +1,8 @@ // Copyright 2024 Arthur Sonzogni. All rights reserved. // Use of this source code is governed by the MIT license that can be found in // the LICENSE file. +#ifndef FTXUI_SCREEN_PIXEL_HPP +#define FTXUI_SCREEN_PIXEL_HPP #include // for uint8_t #include // for string, basic_string, allocator @@ -46,3 +48,5 @@ struct Pixel { }; } // namespace ftxui + +#endif // FTXUI_SCREEN_PIXEL_HPP