From b0d70096a179fedd3199b985703a4a676b99a5d4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 20 Mar 2019 22:38:25 -0400 Subject: [PATCH 1/2] common/uint128: Add missing top-file source text --- src/common/uint128.cpp | 4 ++++ src/common/uint128.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/common/uint128.cpp b/src/common/uint128.cpp index 2238a52c53..32bf56730f 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 diff --git a/src/common/uint128.h b/src/common/uint128.h index 52e6b46eb7..676a5d1723 100644 --- a/src/common/uint128.h +++ b/src/common/uint128.h @@ -1,3 +1,6 @@ +// Copyright 2019 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. #include #include "common/common_types.h" From f2c41ba2560c74d699d99e823b0ffb671a18bb93 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 20 Mar 2019 22:39:00 -0400 Subject: [PATCH 2/2] common/uint128: Add missing header guard --- src/common/uint128.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/uint128.h b/src/common/uint128.h index 676a5d1723..a3be2a2cba 100644 --- a/src/common/uint128.h +++ b/src/common/uint128.h @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#pragma once + #include #include "common/common_types.h"