Files
test/source/blender/blenlib/intern/bit_ref.cc
2025-03-29 15:18:50 +11:00

26 lines
454 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*/
#include "BLI_bit_ref.hh"
#include <ostream>
namespace blender::bits {
std::ostream &operator<<(std::ostream &stream, const BitRef &bit)
{
return stream << (bit ? '1' : '0');
}
std::ostream &operator<<(std::ostream &stream, const MutableBitRef &bit)
{
return stream << BitRef(bit);
}
} // namespace blender::bits