I'm working through "C++ Template Metaprogramming" by Abrahams & Gurtovoy" This isn't actually in chapter two but is something I tried whilst working on the first exercise (2.10, 2.0) which is confusing me:
#include <iostream>
#include <boost/type_traits.hpp>
std::string display(bool b)
{
return (b ? "true" : "false");
}
int main()
{
using namespace std;
cout << display(boost::is_same<int const&, boost::add_const<int &>::type >::value) << "\n";
return 0;
}
The output is 'false'. However if I remove the references, i.e. 'int const' and 'int'. The output is 'true'.
displayfunction by settingstd::cout << std::boolalpha;– juanchopanza Jun 2 '11 at 16:51