2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-02-21 15:12:30 +00:00
Files
nowide/standalone/cstdint.hpp
Alexander Grund 7054b4b2a6 Allow building as standalone (No Boost references at all)
Update conversion script
Fix references in Code
Add tests
2020-03-15 18:44:21 +01:00

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