Baris Evrim Demiroz
- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 3
-
Baris Evrim Demiroz commented, -
Baris Evrim Demiroz created a post, Custom span type "is not a valid range type"
I have a custom `span` implementation. However when I do `for (auto& x : objects)` where `objects` is a `span` I get a "span<...> is not a valid range type" warning from the IDE. The code compiles ... -
-
Baris Evrim Demiroz commented, -
-
Baris Evrim Demiroz created a post, AnsweredDebugger, set value only once
I have changed a local variable value through the watch window. It is used in a for loop, something similar to this: int x;for (int i=0; i<10; ++i) modify(x); However after setting the value ...