]> git.proxmox.com Git - ceph.git/blob - ceph/src/Beast/test/http/nodejs_parser.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / Beast / test / http / nodejs_parser.cpp
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 #ifdef _MSC_VER
9 # pragma warning (push)
10 # pragma warning (disable: 4127) // conditional expression is constant
11 # pragma warning (disable: 4244) // integer conversion, possible loss of data
12 #endif
13 #include "nodejs-parser/http_parser.c"
14 #ifdef _MSC_VER
15 # pragma warning (pop)
16 #endif
17