-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.hpp
48 lines (42 loc) · 1.01 KB
/
stdafx.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Computational Helper for Direction and Routing (CHDR)
* Copyright (c) 2024 by Nazar Elsayed & Louis Eriksson
*
* Licensed under CC BY-NC-ND 4.0
* https://creativecommons.org/licenses/by-nc-nd/4.0/
*/
#ifndef CHDR_STDAFX_HPP
#define CHDR_STDAFX_HPP
/* ReSharper disable CppUnusedIncludeDirective */
// NOLINTBEGIN(*-include-cleaner)
#include "include/utils/intrinsics.hpp"
#include <algorithm>
#include <array>
#include <cassert>
#include <cmath>
#include <cstddef>
#include <cstdlib>
#include <exception>
#include <forward_list>
#include <functional>
#include <future>
#include <initializer_list>
#include <iostream>
#include <iostream>
#include <limits>
#include <list>
#include <memory>
#include <mutex>
#include <queue>
#include <stdexcept>
#include <string>
#include <string_view>
#include <thread>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
// NOLINTEND(*-include-cleaner)
/* ReSharper enable CppUnusedIncludeDirective */
#endif //CHDR_STDAFX_HPP