summary refs log tree commit diff stats
path: root/Source/pch.h
blob: 9e39f33c182a042c7cd8d727e97bd0fa5916c915 (plain) (blame)
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
#pragma once

#define WIN32_LEAN_AND_MEAN 1
#define VC_EXTRALEAN 1
#include <windows.h>
#undef min
#undef max

#include <algorithm>
#include <cassert>
#include <chrono>
#include <exception>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <numeric>
#include <string>
#include <thread>
#include <vector>

#pragma warning (disable: 26451) // Potential arithmetic overflow
#pragma warning (disable: 26812) // Unscoped enum type

#include "MemoryException.h"
#include "Memory.h"
#include "Puzzle.h"