mirror of
https://github.com/boostorg/nowide.git
synced 2026-02-21 15:12:30 +00:00
13 lines
218 B
C++
13 lines
218 B
C++
#ifndef NOWIDE_CSTDINT_HPP
|
|
#define NOWIDE_CSTDINT_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace nowide {
|
|
typedef std::uint32_t uint32_t;
|
|
typedef std::uint16_t uint16_t;
|
|
typedef std::uint8_t uint8_t;
|
|
} // namespace nowide
|
|
|
|
#endif
|