252 reputation
18
bio website
location
age
visits member for 1 year, 4 months
seen Jun 16 at 16:05
stats profile views 34

Jun
12
accepted Special Pointer Value 0xFEEEFEF6
Jun
12
comment Special Pointer Value 0xFEEEFEF6
Yea, realized that and deleted the comment :)
Jun
12
asked Special Pointer Value 0xFEEEFEF6
May
22
comment template partial specialization of static fields initialisation
.. and this will only work for integral types.
May
18
comment Opinions on type-punning in C++?
Type punning is undefined in the standard. However, type punning using unions are supported by at least GCC (with strict-aliasing enabled iirc).
May
18
comment Opinions on type-punning in C++?
As said in MSDN (msdn.microsoft.com/en-us/library/e0w9f63b%28v=vs.80%29.aspx): "The result of a reinterpret_cast cannot safely be used for anything other than being cast back to its original type. Other uses are, at best, nonportable."
May
12
accepted Finding Reasons for Linking Errors in Visual Studio
May
9
answered Finding Reasons for Linking Errors in Visual Studio
May
9
asked Finding Reasons for Linking Errors in Visual Studio
May
2
revised Usage Issue of std::align
Added 2nd edit since link has been update.
May
2
accepted Usage Issue of std::align
May
1
comment Usage Issue of std::align
The one after 'Edit': cplusplus.com/reference/memory/align/?kw=align
May
1
comment Usage Issue of std::align
Looking at the implementation in VS11, it does look incorrect. How about the example on the second link? If align can leave the pointer alone if it's already aligned, isn't the loop missing an incrementation of the pointer?
Apr
30
revised Usage Issue of std::align
Added ambiguity example link
Apr
30
comment Usage Issue of std::align
(meant 5 bytes, had a different type in the macro.)
Apr
30
comment Usage Issue of std::align
If I change the pv pointer to &i - 1 byte (doing some uggly casting) the pointer will be moved 11 bytes. Can this be a compiler bug?
Apr
30
revised Usage Issue of std::align
Estetic change
Apr
30
asked Usage Issue of std::align
Mar
29
accepted Static Method as Function Pointer
Mar
29
revised Static Method as Function Pointer
Fixed grammar