4#ifndef TETL_CSTDINT_INT_T_HPP
5#define TETL_CSTDINT_INT_T_HPP
7#include <etl/_config/all.hpp>
12using int8_t = TETL_BUILTIN_INT8;
15using int16_t = TETL_BUILTIN_INT16;
18using int32_t = TETL_BUILTIN_INT32;
21using int64_t = TETL_BUILTIN_INT64;
25static_assert(
sizeof(
etl::int8_t) == 1,
"int8_t size should be 1");
26static_assert(
sizeof(
etl::int16_t) == 2,
"int16_t size should be 2");
27static_assert(
sizeof(
etl::int32_t) == 4,
"int32_t size should be 4");
28static_assert(
sizeof(
etl::int64_t) == 8,
"int64_t size should be 8");
Definition adjacent_find.hpp:9