Badge
| Nice Question | Question score of 10 or more. This badge can be awarded multiple times. |
Johannes Schaub - litb earned this badge 59 times |
mar 29 at 20:39
When is a template more specialized than the other? 'And'/'Or' confusion with logics.
mar 13 at 14:08
Why is pointer_traits not defined for “T* const”?
mar 13 at 13:38
Does “default” switch case disturb jump table optimization?
dec 16 at 15:59
Is an implementation of std::tuple allowed to fail with triggering a derived-to-base conversion for empty class elements?
oct 14 at 15:27
Why is “volatileQualifiedExpr + volatileQualifiedExpr” not necessarily UB in C but in C++?
aug 20 at 22:58
Is it recommended to std::move a string into containers that is going to be overwritten?
aug 8 at 9:00
Can SFINAE detect private access violations?
aug 3 at 13:00
How to avoid “(void)a” cast causing side-effects?
jun 18 '12 at 11:56
May std::vector make use of small buffer optimization?
jun 14 '12 at 16:46
Emulating GCC's __builtin_unreachable?
dec 6 '11 at 9:24
What does C1x inherit from C++?
dec 3 '11 at 4:52
What the heck does std::bind(x, y) do?
nov 28 '11 at 11:37
Is C++03 a new version of the C++ Standard or just a Technical Corrigendum (TC) of C++98?
nov 23 '11 at 10:33
Why is the address of this volatile variable always at 1?
nov 19 '11 at 17:52
Why is this “min” template of cpp-next at fault?
oct 17 '11 at 3:59
Are “enum class” members instantiated immediately or later when used?
aug 31 '11 at 21:53
If I jump out of a catch-block with “goto”, am I guaranteed that the exception-object will be free'ed?
aug 18 '11 at 20:39
Why can it be dangerous to use this POD struct as a base class?
jul 22 '11 at 21:12
Weird use of `?:` in `typeid` code
jul 22 '11 at 16:41
Goto prior to a variable definition - what happens with its value?
jul 7 '11 at 2:49
Why does GCC say “named return values no longer supported”?
jun 11 '11 at 16:54
When an array is created by a subexpression, what happens with the temporaries therein?
may 19 '11 at 10:15
My compiler allows “T&…”. Is this an extension?
may 18 '11 at 20:07
With “-fno-exceptions”, what happens with “new T”?
may 15 '11 at 22:07
Why are by-value parameters excluded from NRVO?
may 12 '11 at 14:42
Why is it disallowed for partial specialization in a non-type argument to use nested template parameters
apr 23 '11 at 13:39
Calling function template specialization using C calling conventions
apr 23 '11 at 5:56
When exactly is an initializer temporary destroyed?
apr 21 '11 at 17:36
Initializing from an initializer list, but without {{{{{{{{ … }}}}}}}}?
apr 17 '11 at 2:37
Does “T const&t = C().a;” lengthen the lifetime of “a”?
apr 16 '11 at 13:16
C++0x confusion with using declarations
apr 14 '11 at 16:12
Typo with “cout < myint”. Why does it work?
apr 13 '11 at 18:20
An union with a const and a nonconst member?
apr 12 '11 at 16:15
Default argument in the middle of parameter list?
feb 17 '11 at 16:23
Can std::string overload “substr” for rvalue *this and steal resources?
jan 23 '11 at 15:09
Use of rvalue reference members?
jan 17 '11 at 12:11
What does “class :” mean in C++?
jan 15 '11 at 11:44
Weird “[]” after Java method signature
dec 22 '10 at 12:09
What happens to base class destructor if a derived class destructor throws an exception
dec 14 '10 at 4:17
Narrowing conversions in C++0x. Is it just me, or does this sound like a breaking change?
dec 13 '10 at 11:39
Destructor not called after destroying object placement-new'ed
nov 20 '10 at 13:36
(post deleted or otherwise unavailable)
aug 28 '10 at 22:55
Optimizing away a “while(1);” in C++0x
jul 22 '10 at 13:17
Is this self initialization valid?
apr 3 '10 at 23:12
Last named parameter not function or array?
sep 24 '09 at 9:37
Partial ordering with function template having undeduced context
aug 30 '09 at 11:02
SFINAE with invalid function-type or array-type parameters?
may 6 '09 at 20:37
Why do C++ streams use char instead of unsigned char?