This file is indexed.

/usr/include/lexertl/enums.hpp is in libpuma-dev 1:2.1-2+b1.

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
// enums.hpp
// Copyright (c) 2005-2015 Ben Hanson (http://www.benhanson.net/)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file licence_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#ifndef LEXERTL_ENUMS_H
#define LEXERTL_ENUMS_H

namespace lexertl
{
    enum regex_flags {icase = 1, dot_not_newline = 2, skip_ws = 4,
        match_zero_len = 8};
    // 0 = end state, 1 = id, 2 = user id, 3 = push_dfa_index
    // 4 = next dfa, 5 = dead state, 6 = dfa_start
    enum {end_state_index, id_index, user_id_index, push_dfa_index,
        next_dfa_index, eol_index, dead_state_index, transitions_index};
    // Rule flags:
    enum feature_flags {bol_bit = 1, eol_bit = 2, skip_bit = 4, again_bit = 8,
        multi_state_bit = 16, recursive_bit = 32, advance_bit = 64};
    // End state flags:
    enum {end_state_bit = 1, pop_dfa_bit = 2};
}

#endif