Files
typeof/test/odr.hpp

12 lines
135 B
C++
Raw Normal View History

2005-09-20 01:32:56 +00:00
#include <boost/typeof/typeof.hpp>
struct foo
{
typedef BOOST_TYPEOF(1 + 2.5) type;
};
namespace
{
typedef foo::type type;
2005-09-28 03:44:31 +00:00
}