This file is indexed.

/usr/include/wibble/param.h is in libwibble-dev 1.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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