Kdziekan

- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
-
-
-
-
-
-
-
Kdziekan created a post, "Cannot convert initializer list to return type 'std::set<MyEnum>'" reported for more than 2 entries
Please take a look at this smallest repro that I have: enum MyEnum{ MY_ENTRY_1, MY_ENTRY_2, MY_ENTRY_3};std::set<MyEnum> MyFunction(){ return { MY_ENTRY_1, MY_ENTRY_2... -
-
-
Kdziekan created a post, ReSharper reports "Assigned value is never used" when "operator=" was used in reality
I have a class that accumulates values like this: class AccumulateValues : public MyValue{public: using MyValue::MyValue; AccumulateValues() = default; AccumulateValues(const MyValue& myValue) : ...