boostorg / accumulators

An awesome library from Boost
http://boost.org/libs/accumulators
22 stars 54 forks source link

missing header in extended_p_square_quantile.hpp #49

Open jefftrull opened 3 years ago

jefftrull commented 3 years ago

This header uses std::ostringstream without first including <sstream>, resulting in compile errors. Minimal reproducer:

#include <boost/accumulators/statistics/extended_p_square_quantile.hpp>

int main() {}