2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-18 02:12:09 +00:00

scope/let.hpp Fix tabs in comments

This commit is contained in:
John Fletcher
2015-03-11 21:52:43 +00:00
parent c420075226
commit 04a7ef3daf

View File

@@ -137,13 +137,13 @@ namespace boost { namespace phoenix
//int size = strm.str().length();
//BOOST_ASSERT(size >= 0);
result_type r = eval(expr, phoenix::context(env, phoenix::actions(ctx)));
// typedef is_value<result_type> is_val;
// typedef is_value<result_type> is_val;
//if(is_val::value) This seems always to be true
//{
// std::cout << "let result has value type" << std::endl;
// }
// }
//if (is_val(r) ) std::cout << "let returns val" << std::endl;
//std::cout << "result is " << r << std::endl;
//std::cout << "result is " << r << std::endl;
return r;
}
};