mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-08 17:04:41 -04:00
4ebe6417a5
git-subtree-dir: boost git-subtree-split: b4feb19f287ee92d87a9624b5d36b7cf46aeadeb
21 lines
728 B
C++
21 lines
728 B
C++
// error_code support implementation file ----------------------------------//
|
|
|
|
// Copyright Beman Dawes 2002, 2006
|
|
|
|
// 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)
|
|
|
|
// See library home page at http://www.boost.org/libs/system
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// define BOOST_SYSTEM_SOURCE so that <boost/system/config.hpp> knows
|
|
// the library is being built (possibly exporting rather than importing code)
|
|
#define BOOST_SYSTEM_SOURCE
|
|
|
|
#include <boost/system/error_code.hpp>
|
|
|
|
#ifndef BOOST_ERROR_CODE_HEADER_ONLY
|
|
#include <boost/system/detail/error_code.ipp>
|
|
#endif
|