stub in colorize-alpha filter output to avoid crash - refs #2021

This commit is contained in:
Dane Springmeyer 2013-09-25 15:33:10 -07:00
parent 226e5b2d7a
commit 843fdc0871

View file

@ -203,6 +203,13 @@ inline std::ostream& operator<< (std::ostream& os, invert)
return os;
}
inline std::ostream& operator<< (std::ostream& os, colorize_alpha const& filter)
{
os << "colorize-alpha(TODO)";
return os;
}
template <typename Out>
struct to_string_visitor : boost::static_visitor<void>
{