mirror of
https://github.com/boostorg/functional.git
synced 2026-01-26 08:52:27 +01:00
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;
|
|
}
|