mirror of
https://github.com/boostorg/container_hash.git
synced 2026-02-23 15:42:18 +00:00
- [53670] Avoid C style casts. - [55604] Fix #3346 boost/detail/scoped_enum_emulation.hpp enum_t conflict with Unix rpc/types.h - Don't foward declare containers when using gcc's parallel library and add a macro to disable forward declaration. Fixes #3866. [SVN r59679]
14 lines
336 B
C++
14 lines
336 B
C++
|
|
// Copyright 2010 Daniel James.
|
|
// 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)
|
|
|
|
#define BOOST_DETAIL_NO_CONTAINER_FWD
|
|
|
|
#include <boost/detail/container_fwd.hpp>
|
|
|
|
int main()
|
|
{
|
|
std::set<int> x;
|
|
std::vector<std::string> y;
|
|
} |