Fix GCC build error by correctly including <utility> header

This is needed to not rely on implementation defined behavior
regarding transitive header includes, here for std::integer_sequence.
This commit is contained in:
xkevio 2023-06-06 01:57:07 +02:00
parent 9ca66f4157
commit 463c47af4f

View file

@ -3,6 +3,7 @@
#include <fstream>
#include <iostream>
#include <iterator>
#include <utility>
#include <vector>
#include "termcolor.hpp"