This file is indexed.

/usr/include/liggghts/fix_dummy2.h is in libliggghts-dev 3.5.0+repack1-10.

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
#ifndef LMP_FIX_DUMMY2_H
#define LMP_FIX_DUMMY2_H

namespace LAMMPS_NS {

class FixContactPropertyAtom : public Fix {

 public:

  FixContactPropertyAtom(class LAMMPS * lmp, int narg, char ** arg) : Fix(lmp, narg, arg) {}

  inline bool has_partner(int,int)
  {
    return false;
  }

  inline void add_partner(int,int,double*)
  {
  }

  void do_forward_comm() {}
};
}

#endif