// Copyright 2007 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) // All these headers are meant output a warning, but not cause the compilation // to fail. #include #include #include #include #include #include // And a quick check that the hash library was included. // Strictly speaking I should do this once for each header // but that would just be wasting the testing resources. #include int main() { std::vector v; boost::hash > x; x(v); }