Skip to content

Commit a478827

Browse files
committed
Fixed missing <chrono> header on some compilers
1 parent 8111b51 commit a478827

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utilities.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
#pragma warning(disable:6386)
1010
#include <cmath>
1111
#include <vector>
12+
#include <string>
1213
#ifdef UTILITIES_REGEX
1314
#include <regex> // contains <string>, <vector>, <algorithm> and others
14-
#else // UTILITIES_REGEX
15-
#include <string>
1615
#endif // UTILITIES_REGEX
1716
#include <iostream>
18-
#include <thread> // contains <chrono>
17+
#include <chrono>
18+
#include <thread>
1919
#undef min
2020
#undef max
2121
using std::string;

0 commit comments

Comments
 (0)