Kdziekan

- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
-
Created "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... -
Created 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) : ... -
Created Forced include file in "Make" type of Visual Studio project
Hi, Is there already a way to tell ReSharper that a "Forced include file" option ("/FI") was used in the Makefile type of Visual Studio project? I am getting a number of "Cannot resolve symbol" err...