User profile: Peter87

User info
User name:Peter87
Website:http://dataapa.net/
History
Joined:
Number of posts:11178
Latest posts:

Trouble with seeing where variable is initialized?
[quote=lostwithcpp]this is only for structs, not classes?[/quote] Technically there is no difference...

Trouble with seeing where variable is initialized?
Note that you can also write it like this: [code] foo<wrapper<int>> f{ { 42 } };[/code] which might...

Trouble with seeing where variable is initialized?
[code] foo<wrapper<int>> f{ 42 }; <-- Aggregate intitialization[/code] Basically, [i]foo<wrapper<in...

C++ Questions
It seems to be overloaded for both [tt]FILE*[/tt] and [tt]std::ostream&[/tt] https://en.cppreferenc...

C++ Questions
[quote=seeplus]L44-45. The logic is correct (setting lowest to high and highest to low) but usually ...