xtd 0.2.0
unused.h
Go to the documentation of this file.
1 #pragma once
5 namespace xtd {
17  template <typename ...args_t>
18  void unused(args_t&& ... args) {}
19 
30 #define unused_ \
31  xtd::unused
32 }
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
void unused(args_t &&... args)
It may be used to suppress the "unused variable" or "unused local typedefs" compiler warnings when th...
Definition: unused.h:18