This file is indexed.

/usr/include/dune/common/tuples.hh is in libdune-common-dev 2.5.1-1.

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
#warning The header dune/common/tuples.hh is deprecated. Use directly "std::tuple" and include dune/common/streamoperators.hh for stream operators.

#ifndef DUNE_TUPLES_HH
#define DUNE_TUPLES_HH

#include <tuple>
#include <dune/common/tupleutility.hh>
#include <dune/common/streamoperators.hh>

namespace Dune {
  using std::tuple;
  using std::tuple_element;
  using std::get;
  using std::tuple_size;
  using std::tie;
  using std::make_tuple;
}
#endif