Fix putchar import

This commit is contained in:
2024-05-14 18:13:55 -07:00
parent 006807b17f
commit 207314d950

View File

@@ -1325,13 +1325,21 @@ int64_t VersionedMap::getBytes() const { return impl->getBytes(); }
// GCOVR_EXCL_START
void VersionedMap::Impl::printInOrder(int64_t version) {
#ifdef NDEBUG
inline
#endif
void
VersionedMap::Impl::printInOrder(int64_t version) {
printInOrderHelper(version,
roots.getThreadSafeHandle().rootForVersion(version), 0);
}
void VersionedMap::Impl::printInOrderHelper(int64_t version, uint32_t node,
int depth) {
#ifdef NDEBUG
inline
#endif
void
VersionedMap::Impl::printInOrderHelper(int64_t version, uint32_t node,
int depth) {
if (node == 0) {
return;
}