Fix putchar import
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user