Baris Evrim Demiroz
- 活动总数 12
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 3
- 订阅数 3
-
-
Baris Evrim Demiroz 创建了一个帖子, 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 进行了评论, -
-
Baris Evrim Demiroz 创建了一个帖子, 已回答Debugger, 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 ...