This file is indexed.

/usr/share/dune/aclocal/cxx11_final.m4 is in libdune-common-dev 2.4.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
# Check if the 'final' keyword is supported

AC_DEFUN([DUNE_CHECKFINAL],[
    AC_CACHE_CHECK([for C++11 keyword 'final'], dune_cv_keyword_final, [
        AC_LANG_PUSH([C++])
        AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
                        struct Foo
                        {
                          virtual void foo() final;
                        };
                          ]],
                          [])],
                        dune_cv_keyword_final="yes",
                        dune_cv_keyword_final="no")
        AC_LANG_POP([C++])
    ])

    AS_IF([test "x$dune_cv_keyword_final" = "xyes"],
      [AC_DEFINE_UNQUOTED(HAVE_KEYWORD_FINAL,
                          1,
                          [does the compiler support the keyword 'final'?])],)
])