odr.hpp 337 B

1234567891011121314151617
  1. // Copyright (C) 2006 Arkadiy Vertleyb
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
  4. // boostinspect:nounnamed
  5. #include <boost/typeof/typeof.hpp>
  6. struct foo
  7. {
  8. typedef BOOST_TYPEOF(1 + 2.5) type;
  9. };
  10. namespace
  11. {
  12. typedef foo::type type;
  13. }