Skip to content
Snippets Groups Projects
Verified Commit 1e9eaa5c authored by Timm Fitschen's avatar Timm Fitschen
Browse files

REVERT: Revert unecessary changes

parent 5b7c9a49
No related branches found
No related tags found
1 merge request!25F cpp to string
Pipeline #13918 passed
Pipeline: caosdb-cppinttest

#13919

    ......@@ -142,7 +142,7 @@ public:
    throw std::out_of_range("Container has size " + std::to_string(size()));
    }
    if (cache.count(index) == 0) {
    cache.emplace(std::move(index), std::move(T(this->wrapped->Mutable(index))));
    cache.emplace(index, T(this->wrapped->Mutable(index)));
    }
    return &(cache.at(index));
    }
    ......
    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