summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2019-03-20 23:13:06 -0400
committerGravatar GitHub2019-03-20 23:13:06 -0400
commitb72664abfd0a344501c47c7e8d82594842775d02 (patch)
treeb8d48bb9d00c37f31ae36f7ae0529fceccadacbb /src
parentMerge pull request #2268 from lioncash/codeset (diff)
parentcommon/uint128: Add missing header guard (diff)
downloadyuzu-b72664abfd0a344501c47c7e8d82594842775d02.tar.gz
yuzu-b72664abfd0a344501c47c7e8d82594842775d02.tar.xz
yuzu-b72664abfd0a344501c47c7e8d82594842775d02.zip
Merge pull request #2273 from lioncash/guard
common/uint128: Add missing header guard
Diffstat (limited to 'src')
-rw-r--r--src/common/uint128.cpp4
-rw-r--r--src/common/uint128.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/src/common/uint128.cpp b/src/common/uint128.cpp
index 2238a52c5..32bf56730 100644
--- a/src/common/uint128.cpp
+++ b/src/common/uint128.cpp
@@ -1,3 +1,7 @@
1// Copyright 2019 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
1#ifdef _MSC_VER 5#ifdef _MSC_VER
2#include <intrin.h> 6#include <intrin.h>
3 7
diff --git a/src/common/uint128.h b/src/common/uint128.h
index 52e6b46eb..a3be2a2cb 100644
--- a/src/common/uint128.h
+++ b/src/common/uint128.h
@@ -1,3 +1,8 @@
1// Copyright 2019 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
1 6
2#include <utility> 7#include <utility>
3#include "common/common_types.h" 8#include "common/common_types.h"