tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
nullptr_t.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CSTDDEF_NULLPTR_T_HPP
4#define TETL_CSTDDEF_NULLPTR_T_HPP
5
6namespace etl {
7
13using nullptr_t = decltype(nullptr);
14
15} // namespace etl
16
17#endif // TETL_CSTDDEF_NULLPTR_T_HPP
Definition adjacent_find.hpp:8
decltype(nullptr) nullptr_t
etl::nullptr_t is the type of the null pointer literal, nullptr. It is a distinct type that is not it...
Definition nullptr_t.hpp:13