aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-15 15:40:51 -0500
committerLioncash <mathew1800@gmail.com>2016-12-15 15:40:51 -0500
commit2f3c1bdfb4f307983e9a2e82003bfac2c8b033dd (patch)
tree71735576681527df2da9921399b89990e7606f8e /src/core/hle
parent1abb98202c3aaca9981952c0e032208617ba66a7 (diff)
core: Add missing #pragma once directives where applicable
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/dlp/dlp.h2
-rw-r--r--src/core/hle/service/srv.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/dlp/dlp.h b/src/core/hle/service/dlp/dlp.h
index ec2fe46e8..3185fe322 100644
--- a/src/core/hle/service/dlp/dlp.h
+++ b/src/core/hle/service/dlp/dlp.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
namespace Service {
namespace DLP {
diff --git a/src/core/hle/service/srv.h b/src/core/hle/service/srv.h
index 6041ca42d..d3a9de879 100644
--- a/src/core/hle/service/srv.h
+++ b/src/core/hle/service/srv.h
@@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#pragma once
+
#include "core/hle/service/service.h"
namespace Service {