vector_hash.cpp 530 B

12345678910111213141516
  1. /*=============================================================================
  2. Copyright (c) 2014 Christoph Weiss
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #include <boost/fusion/container/vector/vector.hpp>
  7. #define FUSION_SEQUENCE vector
  8. #include "hash.hpp"
  9. int main()
  10. {
  11. hash_test();
  12. return boost::report_errors();
  13. }