Skip to content

Instantly share code, notes, and snippets.

@slyshykO
Created August 28, 2024 16:29
Show Gist options
  • Save slyshykO/fec3b05669ff32f1779523beaaeaa90e to your computer and use it in GitHub Desktop.
Save slyshykO/fec3b05669ff32f1779523beaaeaa90e to your computer and use it in GitHub Desktop.
UNUSED++
#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