summary refs log tree commit diff stats
path: root/Source/pch.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/pch.h')
-rw-r--r--Source/pch.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Source/pch.h b/Source/pch.h new file mode 100644 index 0000000..d431d61 --- /dev/null +++ b/Source/pch.h
@@ -0,0 +1,26 @@
1#pragma once
2
3#define WIN32_LEAN_AND_MEAN 1
4#define VC_EXTRALEAN 1
5#include <windows.h>
6#undef min
7#undef max
8
9#include <algorithm>
10#include <cassert>
11#include <chrono>
12#include <exception>
13#include <functional>
14#include <iostream>
15#include <map>
16#include <memory>
17#include <numeric>
18#include <string>
19#include <thread>
20#include <vector>
21
22#pragma warning (disable: 26451) // Potential arithmetic overflow
23
24#include "MemoryException.h"
25#include "Memory.h"
26#include "Puzzle.h"