blob: 444244011557b78e6ed9962327ea8712732a7921 [file] [log] [blame]
// 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/devices/sysmem/drivers/sysmem/indent.h"
IndentScope IndentTracker::Current() { return IndentScope(*this, 0); }
IndentScope IndentTracker::Nested(uint32_t level_count) { return IndentScope(*this, level_count); }