mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-02-07 16:56:21 +01:00
common: add missing <memory> include in common_types.h
Adds missing <memory> header include in common_types.h. This header is needed for std::unique_ptr and other smart pointer types that may be used by code including this header.
This commit is contained in:
parent
076d0e618d
commit
70a9f20ae1
1 changed files with 1 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
using u8 = std::uint8_t; ///< 8-bit unsigned byte
|
using u8 = std::uint8_t; ///< 8-bit unsigned byte
|
||||||
using u16 = std::uint16_t; ///< 16-bit unsigned short
|
using u16 = std::uint16_t; ///< 16-bit unsigned short
|
||||||
|
|
Loading…
Reference in a new issue