]> git.proxmox.com Git - ceph.git/blob - ceph/src/Beast/include/beast/config.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / Beast / include / beast / config.hpp
1 //
2 // Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7
8 #ifndef BEAST_CONFIG_HPP
9 #define BEAST_CONFIG_HPP
10
11 /*
12 _MSC_VER and _MSC_FULL_VER by version:
13
14 14.0 (2015) 1900 190023026
15 14.0 (2015 Update 1) 1900 190023506
16 14.0 (2015 Update 2) 1900 190023918
17 14.0 (2015 Update 3) 1900 190024210
18 */
19
20 #if defined(_MSC_FULL_VER)
21 #if _MSC_FULL_VER < 190024210
22 static_assert(false,
23 "This library requires Visual Studio 2015 Update 3 or later");
24 #endif
25 #endif
26
27 #endif