diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-20 23:13:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-20 23:13:06 -0400 |
commit | b72664abfd0a344501c47c7e8d82594842775d02 (patch) | |
tree | b8d48bb9d00c37f31ae36f7ae0529fceccadacbb | |
parent | e76f442a0e926299f19a5805aa37dc465a6fe5ef (diff) | |
parent | f2c41ba2560c74d699d99e823b0ffb671a18bb93 (diff) |
Merge pull request #2273 from lioncash/guard
common/uint128: Add missing header guard
-rw-r--r-- | src/common/uint128.cpp | 4 | ||||
-rw-r--r-- | src/common/uint128.h | 5 |
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 @@ +// Copyright 2019 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + #ifdef _MSC_VER #include <intrin.h> 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 @@ +// Copyright 2019 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once #include <utility> #include "common/common_types.h" |