User profile: Peter87

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

When does early binding happen?
I guess this is what's called "devirtualization" which GCC has optimization flags for ... https://gc...

Lambda Expression: Specifying "this" in the capture clause
[quote=Someone]The [code]this[/code] pointer may be captured by value by specifying [code]*this[/cod...

Why const literal class is not a constexpr even if initialized from a constexpr?
Hmm, are you able to implement the copy constructor correctly and still have it work? I can't...

Why const literal class is not a constexpr even if initialized from a constexpr?
It works for integers but not for class types. https://en.cppreference.com/w/cpp/language/constant_...

Redefinition Errors on Build
You cannot copy a [code]unique_ptr[/code]. Consider dereferencing the pointer and returning [code]Lo...