We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an operator() in the class dumper (printer.hpp) for IE_TAG that is used in print_all()
template <class IE> constexpr void operator() (IE const& ie, IE_TAG) const noexcept {}
Example:
sink s; diameter::slh::proto proto; med2::print_all(s, proto); // error .. //print all (named and not) IEs in full depth template <class SINK, class IE, std::size_t MAX_LINE = 128> void print_all(SINK&& sink, IE const& ie)
Compile error:
cannot convert 'med2::IE_TAG{}' (type 'med2::IE_TAG') to type 'med2::PRIMITIVE' encoder(ie, IE_TAG{});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add an operator() in the class dumper (printer.hpp) for IE_TAG that is used in print_all()
Example:
Compile error:
cannot convert 'med2::IE_TAG{}' (type 'med2::IE_TAG') to type 'med2::PRIMITIVE'
encoder(ie, IE_TAG{});
The text was updated successfully, but these errors were encountered: