This file is indexed.

/usr/include/ITK-4.9/egcs/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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef vcl_egcs_map_txx_
#define vcl_egcs_map_txx_

#include <vcl_map.h>

// Macro to instantiate the underlying rb_tree and its member templates.
//template class rb_tree<Key,pair<Key const,T >,select1st<pair<Key const,T > >,Comp,__default_alloc_template<true,0> >
#define VCL_MAP_INSTANTIATE_RB_TREE_tagged(tag, Key, T, Comp) \
template class rb_tree<Key,pair<Key const,T >,select1st<pair<Key const,T > >,Comp,__default_alloc_template<true,0> >;\
typedef        rb_tree<Key,pair<Key const,T >,select1st<pair<Key const,T > >,Comp,__default_alloc_template<true,0> > cont##tag;\
template void cont##tag::insert_unique(cont##tag::iterator, cont##tag::iterator)
#define VCL_MAP_INSTANTIATE_RB_TREE_passthrough(tag, Key, T, Comp) \
VCL_MAP_INSTANTIATE_RB_TREE_tagged(tag, Key, T, Comp)
#define VCL_MAP_INSTANTIATE_RB_TREE(Key, T, Comp) \
VCL_MAP_INSTANTIATE_RB_TREE_passthrough(__LINE__, Key, T, Comp)

// Macro to instantiate something.
#define VCL_MAP_INSTANTIATE_MT_InputIterator(maptype, Key, T, Comp, InputIterator) \
template maptype<Key, T, Comp >::maptype(InputIterator, InputIterator);\
template maptype<Key, T, Comp >::maptype(InputIterator first, InputIterator last, Comp const&);\
template void maptype<Key, T, Comp >::insert(InputIterator first, InputIterator last)

// Macro to instantiate vcl_map<Key, T, Comp>
#undef VCL_MAP_INSTANTIATE
#define VCL_MAP_INSTANTIATE(Key, T, Comp) \
template class vcl_map<Key, T, Comp >; \
VCL_MAP_INSTANTIATE_MT_InputIterator(map, Key, T, Comp, vcl_map<Key VCL_COMMA T VCL_COMMA Comp >::iterator); \
VCL_MAP_INSTANTIATE_RB_TREE(Key, T, Comp)

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

#endif // vcl_egcs_map_txx_