Skip to content

Instantly share code, notes, and snippets.

View vinniefalco's full-sized avatar
🏠
Working from home

Vinnie Falco vinniefalco

🏠
Working from home
View GitHub Profile
xslt-xsltproc.windows ..\..\..\bin.v2\libs\beast\doc\msvc-14.1\debug\threading-multi\beast_doc.docbook
../../../libs/beast/doc/qbk/quickref.xml:2: warning: failed to load external entity "../../../libs/tools/boostbook/dtd/boostbook.dtd"
/Boost//DTD BoostBook XML V1.0//EN" "../../../tools/boostbook/dtd/boostbook.dtd"
^
../../../libs/beast/doc/qbk/quickref.xml:193: parser error : Entity 'nbsp' not defined
<bridgehead renderas="sect3">&nbsp;</bridgehead>
/** Read a complete message
This function is used to synchronously read a message from the stream.
The call blocks until one of the following is true:
@li A complete message is received.
@li An error occurs on the stream.
This operation is implemented in terms of one or more calls to the next
/** Read a complete message
This function is used to synchronously read a message from the stream.
The call blocks until one of the following is true:
@li A complete message is received.
@li A close frame is received. In this case the error indicated by
the function will be @ref error::closed.
#
# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Official repository: https://github.com/boostorg/beast
#
local MAIN = ../../extras/boost/beast/unit_test/main.cpp ;
#include <boost/asio.hpp>
#include <boost/config.hpp>
#include <boost/core/ignore_unused.hpp>
#include <boost/detail/winapi/access_rights.hpp>
#include <boost/detail/winapi/basic_types.hpp>
#include <boost/detail/winapi/error_codes.hpp>
#include <boost/detail/winapi/file_management.hpp>
#include <boost/detail/winapi/get_last_error.hpp>
#include <boost/detail/winapi/handles.hpp>
#include <boost/endian/buffers.hpp>
From 3836c162c2864ed180df7d80fa03c70d17102edc Mon Sep 17 00:00:00 2001
From: Peter Oberparleiter <oberpapr@users.sourceforge.net>
Date: Tue, 13 Nov 2012 09:58:53 +0000
Subject: [PATCH] geninfo: fix parsing of gcc 4.7 gcov format
GCC 4.7 changes the gcov format for lines which can only be reached
by exceptions to "=====" instead of "#####". This results in the
following warning:
geninfo: Argument "=====" isn't numeric in numeric gt (>) at geninfo
$ cmake ..
-- Building for: Visual Studio 15 2017
-- The C compiler identification is MSVC 19.10.25019.0
-- The CXX compiler identification is MSVC 19.10.25019.0
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/ 2017/Community/VC/Tools/MSVC/14.10.25017/bin/HostX86/x86/cl.exe
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/ 2017/Community/VC/Tools/MSVC/14.10.25017/bin/HostX86/x86/cl.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studi o/2017/Community/VC/Tools/MSVC/14.10.25017/bin/HostX86/x86/cl.exe
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studi o/2017/Community/VC/Tools/MSVC/14.10.25017/bin/HostX86/x86/cl.exe -- works
CMake Warning at CMakeLists.txt:11 (find_package):
By not providing "Findboost_assert.cmake" in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"boost_assert", but CMake did not find one.
Could not find a package configuration file provided by "boost_assert" with
any of the following names:
boost_assertConfig.cmake
boost_assert-config.cmake
exe wsload :
$(TEST_MAIN)
wsload.cpp
;
explicit wsload ;
alias run-tests :
[ compile wsload.cpp ]
;
//
// Copyright (c) 2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include <beast/core/async_result.hpp>
#include <beast/core/bind_handler.hpp>
#include <beast/core/error.hpp>