This file is indexed.

/usr/include/ITK-4.9/gcc-libstdcxx-v3/vcl_map.txx is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.

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
#ifndef vcl_gcc_libstdcxx_v3_map_txx_
#define vcl_gcc_libstdcxx_v3_map_txx_

#include <vcl_map.h>

// Macro to instantiate a vcl_map.
#undef VCL_MAP_INSTANTIATE
#define VCL_MAP_INSTANTIATE(Key, T, Comp) \
template class vcl_map<Key, T, Comp >; \
/* member template : */ \
template void vcl_map<Key, T, Comp >::insert(vcl_map<Key, T, Comp >::iterator, vcl_map<Key, T, Comp >::iterator)

// Macro to instantiate a vcl_multimap.
#undef VCL_MULTIMAP_INSTANTIATE
#define VCL_MULTIMAP_INSTANTIATE(Key, T, Comp) \
template class vcl_multimap<Key, T, Comp >

#endif