Created
August 28, 2024 16:29
-
-
Save slyshykO/fec3b05669ff32f1779523beaaeaa90e to your computer and use it in GitHub Desktop.
UNUSED++
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __cplusplus | |
#define UNUSED(x) ((void)(x)) | |
#else | |
template <typename... Ts> | |
inline constexpr void ignore_unused(Ts const& ...){} | |
template <typename... Ts> | |
inline constexpr void ignore_unused(){} | |
#define UNUSED(x) ignore_unused(x) | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment