mirror of
https://github.com/boostorg/functional.git
synced 2026-01-26 17:02:32 +01:00
Should have done this years ago, removing this header should make modularization a tad bit cleaner. [SVN r78533]
15 lines
353 B
C++
15 lines
353 B
C++
|
|
// Copyright 2012 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)
|
|
|
|
#include <boost/functional/detail/container_fwd.hpp>
|
|
|
|
typedef std::vector<int, std::allocator<int> > int_vector;
|
|
|
|
#include <vector>
|
|
|
|
int main() {
|
|
int_vector x;
|
|
}
|