diff options
| author | 2019-03-20 22:39:00 -0400 | |
|---|---|---|
| committer | 2019-03-20 22:39:00 -0400 | |
| commit | f2c41ba2560c74d699d99e823b0ffb671a18bb93 (patch) | |
| tree | bacc12ea0987933544860db3fefd2f97aca8cb10 | |
| parent | common/uint128: Add missing top-file source text (diff) | |
| download | yuzu-f2c41ba2560c74d699d99e823b0ffb671a18bb93.tar.gz yuzu-f2c41ba2560c74d699d99e823b0ffb671a18bb93.tar.xz yuzu-f2c41ba2560c74d699d99e823b0ffb671a18bb93.zip | |
common/uint128: Add missing header guard
Diffstat (limited to '')
| -rw-r--r-- | src/common/uint128.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/uint128.h b/src/common/uint128.h index 676a5d172..a3be2a2cb 100644 --- a/src/common/uint128.h +++ b/src/common/uint128.h | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #pragma once | ||
| 6 | |||
| 5 | #include <utility> | 7 | #include <utility> |
| 6 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 7 | 9 | ||