File: param.h

package info (click to toggle)
libwibble 1.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 1,040 kB
  • ctags: 2,721
  • sloc: cpp: 14,542; makefile: 196; perl: 87; sh: 26
file content (20 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- C++ -*- (c) 2013 Vladimír Štill <xstill@fi.muni.cz>

#ifndef WIBLLE_PARAM_H
#define WIBLLE_PARAM_H

namespace wibble {
namespace param {

#if __cplusplus >= 201103L

/* discard any number of paramentets, taken as const references */
template< typename... X >
void discard( const X&... ) { }

#endif

}
}

#endif // WIBLLE_PARAM_H