Displaying 2 results from an estimated 2 matches for "has_output".
Did you mean:
ac_output
2012 Oct 23
0
[LLVMdev] Status of YAML IO?
..., whereas YAML does not.
2) Can the template meta programming used by YAML I/O work in C++03? My current implementation was written in C++11, but then back ported to C++03 in a way that works with clang, but may not work with other compilers. Here is an example:
template <class T>
struct has_output
{
private:
static double test(...);
#if __has_feature(cxx_access_control_sfinae)
template <class U, class X>
static auto test(U& u, X& x)
-> decltype(U::output(std::declval<const X&>(), std::declval<llvm::raw_ostream&>()), char());
#else
template &l...
2012 Oct 22
2
[LLVMdev] Status of YAML IO?
Hey Nick, what's the status on YAML IO? The other thread seems to have died.
-- Sean Silva