blob: 00c32c8b7a727dab515f2f7da11330ad6635a65e [file] [log] [blame] [edit]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/sysmem/server/indent.h"
IndentScope IndentTracker::Current() { return IndentScope(*this, 0); }
IndentScope IndentTracker::Nested(uint32_t level_count) { return IndentScope(*this, level_count); }