aboutsummaryrefslogtreecommitdiff
path: root/src/_pch.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-06-07 11:17:39 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-06-07 11:17:39 +0200
commit35d7a6bb691d7e0564cda324b3d724caf4901545 (patch)
tree6fd253c64157a3f4dcf44658d4932a9f260bf0e3 /src/_pch.h
parent867a65c0046848bc5e6867ae76f16db293ba4101 (diff)
downloadlanes-35d7a6bb691d7e0564cda324b3d724caf4901545.tar.gz
lanes-35d7a6bb691d7e0564cda324b3d724caf4901545.tar.bz2
lanes-35d7a6bb691d7e0564cda324b3d724caf4901545.zip
Use a precompiled header to speed up the build
Diffstat (limited to 'src/_pch.h')
-rw-r--r--src/_pch.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/_pch.h b/src/_pch.h
new file mode 100644
index 0000000..67fe4a7
--- /dev/null
+++ b/src/_pch.h
@@ -0,0 +1,22 @@
1#pragma once
2
3#include <algorithm>
4#include <array>
5#include <atomic>
6#include <bit>
7#include <cassert>
8#include <chrono>
9#include <condition_variable>
10#include <functional>
11#include <iostream>
12#include <latch>
13#include <mutex>
14#include <optional>
15#include <ranges>
16#include <source_location>
17#include <stop_token>
18#include <string_view>
19#include <thread>
20#include <tuple>
21#include <type_traits>
22#include <variant>