This file is indexed.

/usr/include/pbdata/alignment/CmpAlignmentImpl.hpp is in libpbdata-dev 0~20151014+gitbe5d1bf-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
template<typename T_Field>
void CmpAlignment::StoreField(std::string fieldName, T_Field* fieldValues, int length) {
    fields[fieldName].resize(length);
    memcpy(&fields[fieldName][0], fieldValues, length * sizeof(T_Field));
}