C++ Channel
Loading...
Searching...
No Matches
nodiscard.hpp
Go to the documentation of this file.
1// Copyright (C) 2020-2025 Andrei Avram
2
3#ifndef MSD_CHANNEL_NODISCARD_HPP_
4#define MSD_CHANNEL_NODISCARD_HPP_
5
8namespace msd {
9
10#if (__cplusplus >= 201703L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L))
11#define NODISCARD [[nodiscard]]
12#else
13#define NODISCARD
14#endif
15
16} // namespace msd
17
18#endif // MSD_CHANNEL_NODISCARD_HPP_