This file is indexed.

/usr/include/Rivet/Cmp.fhh is in librivet-dev 1.8.3-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
19
20
21
22
23
24
25
26
27
// -*- C++ -*-
#ifndef RIVET_Cmp_FHH
#define RIVET_Cmp_FHH

namespace Rivet {


  // Forward-declare the Cmp template class
  template <typename T>
  class Cmp;


  /// Enumerate the possible states of a Cmp object.
  enum CmpState {
    UNDEFINED = -2,  //< Undefined state.
    ASC = -1,    //< The two corresponding objects are in ascending order.
    ORDERED = -1,    //< The two corresponding objects are ordered.
    EQUIVALENT = 0,  //< The two corresponding objects are equivalent.
    DESC = 1,    //< The two corresponding objects are in descending order.
    UNORDERED = 1,    //< The two corresponding objects are anti-ordered.
    ANTIORDERED = 1    //< The two corresponding objects are anti-ordered.
  };


}

#endif