This file is indexed.

/usr/include/blitz/array/expr.cc is in libblitz0-dev 1:0.10-3.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
#ifndef BZ_EXPR_CC
#define BZ_EXPR_CC

#include <blitz/array/expr.h>

BZ_NAMESPACE(blitz)

template<typename P_numtype>
inline RectDomain<12>
_bz_ArrayExprConstant<P_numtype>::domain() const
{ 
  TinyVector<int, 12> lb(lbound(0)), ub(ubound(0));
  return RectDomain<12>(lb,ub);
}

BZ_NAMESPACE_END

#endif