This file is indexed.

/usr/include/osl/move_classifier/classifier.h is in libosl-dev 0.4.2-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
28
29
30
31
/* classifier.h
 */
#ifndef OSL_MOVE_CLASSIFIER_CLASSIFIER_H
#define OSL_MOVE_CLASSIFIER_CLASSIFIER_H
#include "osl/state/numEffectState.h"
namespace osl
{
  namespace move_classifier
  {
    struct Classifier
    {
      static bool isSafeMove(const NumEffectState& state, Move move)
#ifdef __GNUC__
	__attribute__ ((pure))
#endif
	;
      static bool isCheck(const NumEffectState& state, Move move)
#ifdef __GNUC__
	__attribute__ ((pure))
#endif
	;
    };
  }
  using move_classifier::Classifier;
}

#endif /* OSL_MOVE_CLASSIFIER_CLASSIFIER_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: