diff options
| author | 2021-01-21 15:30:28 -0800 | |
|---|---|---|
| committer | 2021-01-21 15:30:28 -0800 | |
| commit | 1e9b1d439ff488abdaeb45e82cd8e1fdfbc16421 (patch) | |
| tree | 07aadf220b23954fa32df8f07311cfd3eabcdfcf /src | |
| parent | Merge pull request #5781 from lioncash/bits (diff) | |
| download | yuzu-1e9b1d439ff488abdaeb45e82cd8e1fdfbc16421.tar.gz yuzu-1e9b1d439ff488abdaeb45e82cd8e1fdfbc16421.tar.xz yuzu-1e9b1d439ff488abdaeb45e82cd8e1fdfbc16421.zip | |
common: Add missing include to bit_util.h
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/bit_util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/bit_util.h b/src/common/bit_util.h index 69fb4e5e4..64520ca4e 100644 --- a/src/common/bit_util.h +++ b/src/common/bit_util.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <bit> | ||
| 7 | #include <climits> | 8 | #include <climits> |
| 8 | #include <cstddef> | 9 | #include <cstddef> |
| 9 | 10 | ||