id summary reporter owner description type status milestone component version severity resolution keywords cc 5616 No output when using a filtering_ostream pointer anonymous Jonathan Turkanis "When creating a filtering_ostream on the heap, the output is empty. Following code works: {{{ boost::regex pattern(""...""); boost::iostreams::regex_filter filter(pattern,""...""); boost::iostreams::filtering_ostream out; out.push(filter); out.push(std::cout); out<<""I am written to std::cout""<