D. Lisin
D. Lisin
Yes, it works, but only if you don't use the assignment. Seems logical.
@swagggpickle, i have something like this: ``` #include struct A { A(int some) : _some(some) {} A(const A&) = delete; A(A&&) = delete; A& operator=(const A&) = delete; private: std::optional...
@annius Nope. You can remove it, the flag, and see the same picture: it is compiled successfully.
@annius You are right, but problem is here: if I try to compile my code above with `etl` instead of `std` it does not compile. If I use `std` it...
Ok. But in library we have: ``` template class unordered_map : public etl::iunordered_map ... ``` We can't set own hash nicely because of `MAX_BUCKETS_ `. We have to do ```...
@mmwebster Hmm. Yes, thank you! That looks like exactly I want to.