extent: instantiate ostream for float/double

This commit is contained in:
Danny Robson 2015-02-12 22:08:48 +11:00
parent 4bb5b7adb2
commit d4caabceec

View File

@ -147,6 +147,8 @@ util::operator<< (std::ostream &os, util::extent<T> e) {
template std::ostream& util::operator<< (std::ostream&, util::extent<uint16_t>);
template std::ostream& util::operator<< (std::ostream&, util::extent<uint32_t>);
template std::ostream& util::operator<< (std::ostream&, util::extent<uint64_t>);
template std::ostream& util::operator<< (std::ostream&, util::extent<float>);
template std::ostream& util::operator<< (std::ostream&, util::extent<double>);
//-----------------------------------------------------------------------------