This file is indexed.

/usr/include/ITK-4.9/sunpro/vcl_map.h 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_sunpro_map_h_
#define vcl_sunpro_map_h_
/*
  fsm
*/

#include <map>

// this avoids the VCL_SUNPRO_ALLOCATOR_HACK

template <typename Key, typename Value, typename Comp>
struct vcl_map_sunpro_50 : std::map<Key, Value, Comp, std::allocator<std::pair<Key const, Value> > >
{
  typedef std::map<Key, Value, Comp, std::allocator<std::pair<Key const, Value> > > base;

  vcl_map_sunpro_50() : base() { }

  vcl_map_sunpro_50(base const &that) : base(that) { }
};
#undef  vcl_map
#define vcl_map      vcl_map_sunpro_50

template <typename Key, typename Value, typename Comp>
struct vcl_multimap_sunpro_50 : std::multimap<Key, Value, Comp, std::allocator<std::pair<Key const, Value> > >
{
  typedef std::multimap<Key, Value, Comp, std::allocator<std::pair<Key const, Value> > > base;

  vcl_multimap_sunpro_50() : base() { }

  vcl_multimap_sunpro_50(base const &that) : base(that) { }
};
#undef  vcl_multimap
#define vcl_multimap vcl_multimap_sunpro_50

#endif // vcl_sunpro_map_h_