summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-24 07:20:57 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-24 07:20:57 -0400
commiteed0d1f33bd888e7620c2765b9c47bd43a49efad (patch)
treef888006419bcfc50560c8af23424d2e48940674b
parent1b09d6628b7f268c256c12e4d3e373724671d2f1 (diff)
general: Add missing #pragma once directives
-rw-r--r--src/common/logging/types.h2
-rw-r--r--src/core/hle/api_version.h2
-rw-r--r--src/core/hle/service/spl/spl_results.h2
-rw-r--r--src/core/hle/service/spl/spl_types.h2
4 files changed, 8 insertions, 0 deletions
diff --git a/src/common/logging/types.h b/src/common/logging/types.h
index ee9a1ed84..88b0e9c01 100644
--- a/src/common/logging/types.h
+++ b/src/common/logging/types.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include <chrono>
#include "common/common_types.h"
diff --git a/src/core/hle/api_version.h b/src/core/hle/api_version.h
index 811732179..5e10a7ad9 100644
--- a/src/core/hle/api_version.h
+++ b/src/core/hle/api_version.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include "common/common_types.h"
// This file contains yuzu's HLE API version constants.
diff --git a/src/core/hle/service/spl/spl_results.h b/src/core/hle/service/spl/spl_results.h
index 878fa91b7..a07c61409 100644
--- a/src/core/hle/service/spl/spl_results.h
+++ b/src/core/hle/service/spl/spl_results.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include "core/hle/result.h"
namespace Service::SPL {
diff --git a/src/core/hle/service/spl/spl_types.h b/src/core/hle/service/spl/spl_types.h
index 23c39f7ed..a654e7556 100644
--- a/src/core/hle/service/spl/spl_types.h
+++ b/src/core/hle/service/spl/spl_types.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include <span>
#include "common/bit_field.h"