fix shared_array operator<<

This commit is contained in:
Michael Davidsaver
2020-03-23 19:03:30 -07:00
parent 783281d137
commit b377858115
+3 -3
View File
@@ -397,9 +397,9 @@ public:
}
detail::Limiter format() const {
return Limiter(this->_data.get(),
this->_count,
detail::CaptureCode<typename std::remove_cv<E>::type>::code);
return detail::Limiter(this->_data.get(),
this->_count,
detail::CaptureCode<typename std::remove_cv<E>::type>::code);
}
};