This file is indexed.

/usr/share/dune/aclocal/cxx0x_variadic_constructor_sfinae.m4 is in libdune-common-dev 2.2.1-2.

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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# tests whether the compiler supports SFINAE on variadic template constructors
# within template classes. GCC 4.3 fails this test.
# the associated macro is called HAVE_VARIADIC_CONSTRUCTOR_SFINAE

AC_DEFUN([VARIADIC_CONSTRUCTOR_SFINAE_CHECK],[
  AC_CACHE_CHECK([whether SFINAE on variadic template constructors is fully supported], 
    dune_cv_variadic_constructor_sfinae_support, [
    AC_REQUIRE([AC_PROG_CXX])
    AC_REQUIRE([GXX0X])
    AC_LANG_PUSH([C++])
    AC_RUN_IFELSE([
      AC_LANG_PROGRAM([
        #include <functional>

        template<typename... U>
        struct A
        {

          template<typename... T,
                   typename = typename std::enable_if<(sizeof...(T) < 2)>::type
                   >
          A(T... t)
            : i(1)
          {}

          template<typename... T,
                   typename = typename std::enable_if<(sizeof...(T) >= 2)>::type,
                   typename = void
                   >
          A(T... t)
            : i(-1)
          {}

          A()
            : i(1)
          {}

          int i;
        };],
        [
          return (A<int>().i + A<int>(2).i + A<int>("foo",3.4).i + A<int>(8,'a',A<int>()).i == 0 ? 0 : 1);
        ])],
      dune_cv_variadic_constructor_sfinae_support=yes,
      dune_cv_variadic_constructor_sfinae_support=no)
    AC_LANG_POP
  ])
  AS_IF([test "x$dune_cv_variadic_constructor_sfinae_support" = xyes],[
    AC_DEFINE(HAVE_VARIADIC_CONSTRUCTOR_SFINAE, 1, [Define to 1 if SFINAE on variadic template constructors is fully supported])
  ])
])