Skip to content
Snippets Groups Projects
Commit c9e2793a authored by Jan Trávníček's avatar Jan Trávníček
Browse files

common: fix includes for gcc12

parent 64d9a738
No related branches found
No related tags found
1 merge request!227Merge jt
......@@ -20,7 +20,7 @@
 
#include <algorithm>
#include <functional>
#include <exception>
#include <stdexcept>
 
namespace ext {
 
......
......@@ -4,6 +4,7 @@
 
#include <cstring>
#include <array>
#include <algorithm>
 
static constexpr std::array < std::pair < char, char >, 8 > esc_char_list = { { { '\a', 'a'}, {'\b', 'b'}, {'\f', 'f'}, {'\n', 'n'}, {'\r', 'r'}, {'\t', 't'}, {'\v', 'v'}, {'\\', '\\'} } };
 
......
......@@ -4,6 +4,7 @@
#include <libgen.h>
#include <map>
#include <ext/sstream>
#include <cstring>
 
#include "testing/TimeoutAqlTest.hpp"
#include "testing/TestFiles.hpp"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment