flake parts
This commit is contained in:
28
src/include/pch.hpp
Normal file
28
src/include/pch.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef PCH_HPP
|
||||
#define PCH_HPP
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <cstring>
|
||||
#include <cassert>
|
||||
#include <list>
|
||||
#include <array>
|
||||
#include <vector>
|
||||
#include <variant>
|
||||
#include <any>
|
||||
#include <typeinfo>
|
||||
#include <future>
|
||||
#include <unordered_map>
|
||||
#include <map>
|
||||
#include <functional>
|
||||
#include <optional>
|
||||
#include <chrono>
|
||||
//#include <thread>
|
||||
#include <concepts>
|
||||
|
||||
#include <dlfcn.h>
|
||||
|
||||
#define STRINGIZE(x) #x
|
||||
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user