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
commit 5b2fa8dd41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"