Skip to content
Snippets Groups Projects
Commit 37599908 authored by florian's avatar florian
Browse files

MAINT: Add NOLINT

parent d42276ca
No related branches found
No related tags found
1 merge request!6F update
Pipeline #11458 passed
Pipeline: caosdb-cppinttest

#11459

    ......@@ -104,7 +104,10 @@ ResultSet::iterator::iterator(const ResultSet *result_set_param, size_t index)
    : current_index(index), result_set(result_set_param) {}
    auto ResultSet::iterator::operator*() const -> const Entity & {
    return this->result_set->At(current_index);
    // TODO(tf) clang warns about a bugprone conversion from unsigned
    // size_t to signed int, i.e., the `index` of ResultSet::At. Should
    // we make this unsigned as well?
    return this->result_set->At(current_index); // NOLINT
    }
    auto ResultSet::iterator::operator++() -> ResultSet::iterator & {
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment