tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
null.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CSTDDEF_NULL_HPP
5#define TETL_CSTDDEF_NULL_HPP
6
7#if not defined(NULL)
8 /// \brief The macro NULL is an implementation-defined null pointer
9 /// constant, which may be a prvalue of type nullptr_t.
10 #define NULL nullptr
11#endif
12
13#endif // TETL_CSTDDEF_NULL_HPP