This file is indexed.

/usr/include/dune/pdelab/localoperator/zero.hh is in libdune-pdelab-dev 2.5.0~20170124g7cf9f47a-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
32
33
34
// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=8 sw=2 sts=2:

#ifndef DUNE_PDELAB_LOCALOPERATOR_ZERO_HH
#define DUNE_PDELAB_LOCALOPERATOR_ZERO_HH

#include <dune/pdelab/localoperator/flags.hh>
#include <dune/pdelab/localoperator/idefault.hh>

namespace Dune {
  namespace PDELab {
    //! \addtogroup LocalOperator
    //! \ingroup PDELab
    //! \{

    //! Do-nothing local operator
    /**
     * This local operator does nothing.  It can be used as a
     * placeholder where an (instationary) local operator is semantically
     * required but not actually used.
     *
     * \tparam Time Type used for temporal values.
     */
    template<class Time>
    class ZeroLocalOperator :
      public LocalOperatorDefaultFlags,
      public InstationaryLocalOperatorDefaultMethods<Time>
    { };

    //! \} group LocalOperator
  } // namespace PDELab
} // namespace Dune

#endif // DUNE_PDELAB_LOCALOPERATOR_ZERO_HH