Clone
ixen
committed
on 13 Nov 20
Got rid of boost bind related warnings.
src/libchcore/stdafx.h (+0 -2)
1 1 // stdafx.h : include file for standard system include files,
2 2 // or project specific include files that are used frequently, but
3 3 // are changed infrequently
4 4 //
5 5
6 6 #pragma once
7 7
8 8 #include "../common/targetver.h"
9 9
10 10 #define WIN32_LEAN_AND_MEAN             // Exclude rarely-used stuff from Windows headers
11 11 // Windows Header Files:
12 12 #include <windows.h>
13 13
14   #include <boost/bind.hpp>
15  
16 14 #pragma warning(push)
17 15 #pragma warning(disable: 4985)
18 16
19 17 #include <boost/thread/shared_mutex.hpp>
20 18
21 19 #pragma warning(pop)
22 20
23 21 #include <list>
24 22 #include <set>
25 23 #include <vector>
26 24 #include <tchar.h>