This file is indexed.

/usr/include/ITK-4.5/emulation/vcl_functional.txx is in libinsighttoolkit4-dev 4.5.0-3.

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
21
22
23
24
#ifndef vcl_emulation_functional_txx_
#define vcl_emulation_functional_txx_
/*
  fsm
*/
#include <vcl_functional.h>

// --- Unary templates ---
// Templates with one type mentioned, no requirements on type

#define VCL_UNARY_INSTANTIATE(T) \
template struct vcl_identity<T >

#define VCL_LESS_INSTANTIATE(T) \
template struct vcl_less<T >; \
VCL_UNARY_INSTANTIATE(vcl_less<T >)

#define VCL_COMPARISONS_INSTANTIATE(T) \
VCL_OPERATOR_NE_INSTANTIATE(T);\
VCL_INSTANTIATE_INLINE(bool operator >  (T const &, T const &));\
VCL_INSTANTIATE_INLINE(bool operator <= (T const &, T const &));\
VCL_INSTANTIATE_INLINE(bool operator >= (T const &, T const &))

#endif // vcl_emulation_functional_txx_