Skip to content

Commit

Permalink
fix: include <array> where used
Browse files Browse the repository at this point in the history
we should not be relying on other headers to import this for us.
if we are using std::array<T, N>, we should include the <array>
stdlib header.

Signed-off-by: Kevin Morris <[email protected]>
  • Loading branch information
kevr committed Jan 4, 2023
1 parent 21f071d commit ba5bbd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/color/rgb.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include "../cache.hpp"
#include "../logging.hpp"
#include <array>
#include <cstdint>
#include <string>

Expand Down Expand Up @@ -95,4 +96,3 @@ class color_cache : public cache<T>
}; // namespace fs

#endif /* COLOR_HPP */

0 comments on commit ba5bbd7

Please sign in to comment.