Merge pull request #7115 from ameerj/log-compile

common/logging: Reduce dependent header include overhead
This commit is contained in:
bunnei
2021-10-05 10:05:46 -07:00
committed by GitHub
15 changed files with 53 additions and 18 deletions

View File

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <algorithm>
#include "core/hle/kernel/k_auto_object_container.h"
namespace Kernel {

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cmath>
#include <memory>
#include "common/logging/log.h"

View File

@ -4,6 +4,7 @@
#pragma once
#include <memory>
#include <vector>
#include "core/hle/service/time/clock_types.h"

View File

@ -4,6 +4,8 @@
#pragma once
#include <memory>
#include "common/common_types.h"
#include "core/hle/service/time/clock_types.h"