MōBrowser API
Loading...
Searching...
No Matches
nullptr.hpp
1// Copyright (c) 2000-2024 TeamDev. All rights reserved.
2// TeamDev PROPRIETARY and CONFIDENTIAL.
3// Use is subject to license terms.
4
5#ifndef MOBROWSER_NULLPTR_HPP
6#define MOBROWSER_NULLPTR_HPP
7
8namespace mobrowser {
9namespace internal {
10
14template <class T>
15constexpr T* Nullptr() {
16 return nullptr;
17}
18
19} // namespace internal
20} // namespace mobrowser
21
22#endif // MOBROWSER_NULLPTR_HPP