This file is indexed.

/usr/lib/R/site-library/dplyr/include/dplyr/Column.h is in r-cran-dplyr 0.7.4-3.

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

class Column {
public:
  Column(SEXP data_, const SymbolString& name_) : data(data_), name(name_) {}

public:
  const RObject& get_data() const {
    return data;
  }

  const SymbolString& get_name() const {
    return name;
  }

  Column update_data(SEXP new_data) const {
    return Column(new_data, name);
  }

private:
  RObject data;
  SymbolString name;
};

#endif //DPLYR_DPLYR_COLUMN_H