wibble  1.1
param.h
Go to the documentation of this file.
1 // -*- C++ -*- (c) 2013 Vladimír Štill <xstill@fi.muni.cz>
2 
3 #ifndef WIBLLE_PARAM_H
4 #define WIBLLE_PARAM_H
5 
6 namespace wibble {
7 namespace param {
8 
9 #if __cplusplus >= 201103L
10 
11 /* discard any number of paramentets, taken as const references */
12 template< typename... X >
13 void discard( const X&... ) { }
14 
15 #endif
16 
17 }
18 }
19 
20 #endif // WIBLLE_PARAM_H
Definition: amorph.h:17