This file is indexed.

/usr/include/ITK-4.5/gcc-295/vcl_deque.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
// This is vcl/gcc-295/vcl_deque.txx
#ifndef vcl_gcc295_deque_cxx_
#define vcl_gcc295_deque_cxx_

#include <vcl_deque.h>
#include <vcl_functional.h> // for greater<T>
#include <vcl_algorithm.h> // for __push_heap, __adjust_heap

#undef  VCL_DEQUE_INSTANTIATE
#define VCL_DEQUE_INSTANTIATE(T) \
template class vcl_deque<T >; \
template class _Deque_base<T, allocator<T >, 0>

#define VCL_DEQUE_INSTANTIATE_HEAP(T) \
template void __push_heap<_Deque_iterator<T,T&,T*,0>,T,T,vcl_greater<T > >(_Deque_iterator<T,T&,T*,0>,T,T,T,vcl_greater<T >); \
template void __adjust_heap<_Deque_iterator<T,T&,T*,0>,T,T,vcl_greater<T > >(_Deque_iterator<T,T&,T*,0>,T,T,T,vcl_greater<T >)

#endif