odr_no_uns1.cpp 402 B

1234567891011121314151617181920
  1. // Copyright (C) 2006 Arkadiy Vertleyb
  2. // Copyright (C) 2006 Peder Holt
  3. // Use, modification and distribution is subject to the Boost Software
  4. // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
  5. #include "odr_no_uns1.hpp"
  6. #include "odr_no_uns2.hpp"
  7. void odr_no_uns1()
  8. {
  9. odr_test_1 t1;
  10. odr_test_2 t2;
  11. BOOST_AUTO(v1, t1);
  12. BOOST_AUTO(v2, t2);
  13. }
  14. int main()
  15. {
  16. return 0;
  17. }