Fix putchar import
This commit is contained in:
@@ -1325,13 +1325,21 @@ int64_t VersionedMap::getBytes() const { return impl->getBytes(); }
|
|||||||
|
|
||||||
// GCOVR_EXCL_START
|
// GCOVR_EXCL_START
|
||||||
|
|
||||||
void VersionedMap::Impl::printInOrder(int64_t version) {
|
#ifdef NDEBUG
|
||||||
|
inline
|
||||||
|
#endif
|
||||||
|
void
|
||||||
|
VersionedMap::Impl::printInOrder(int64_t version) {
|
||||||
printInOrderHelper(version,
|
printInOrderHelper(version,
|
||||||
roots.getThreadSafeHandle().rootForVersion(version), 0);
|
roots.getThreadSafeHandle().rootForVersion(version), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void VersionedMap::Impl::printInOrderHelper(int64_t version, uint32_t node,
|
#ifdef NDEBUG
|
||||||
int depth) {
|
inline
|
||||||
|
#endif
|
||||||
|
void
|
||||||
|
VersionedMap::Impl::printInOrderHelper(int64_t version, uint32_t node,
|
||||||
|
int depth) {
|
||||||
if (node == 0) {
|
if (node == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user