attributes print format

This commit is contained in:
frank 2021-10-29 01:07:48 -04:00
parent 70bc054c7f
commit 950a95502b
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ void sb::Attributes::extend(const Attributes& other, std::size_t count)
* prevent it being looked up with arguments other than attributes. */
std::ostream& sb::operator<<(std::ostream& out, const Attributes& attributes)
{
out << "<Attributes (#" << attributes.index() << ", " << attributes.dimensions() << "D, " <<
out << "<Attributes #" << attributes.index() << ", " << attributes.dimensions() << "D, " <<
attributes.size() << " bytes, ";
std::visit([&] (const auto& vector) {
if constexpr (!std::is_same_v<std::decay_t<decltype(vector)>, std::monostate>)