Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

When can an object have either but not both of non zero size , one or more bytes of storage?

c++ language-lawyer

distance between two signed numbers

c++ c language-lawyer distance

Implementing a std::vector like container without undefined behavior

Why is this direct initialization valid? (C++ 17)

Allocating zero objects with std::allocator::allocate(0) in C++

I'm having some difficulty understanding [basic.scope.pdecl]/7

Function without prototype called with non-compatible type

Why can templated aliases of anonymous struct/class-es not be defined directly?

Conversion operator in direct-initialization

ADL with std::function: Can functions taking std::function objects be found via the types in the std::function's argument list?

Default constructor expression and lvalues

A question about name lookup with friend function

Specification rule of "definition of a static data member is in the scope of its class" with a templated base class

Is it guaranteed by the C standard to be safe to do printf("%.*s", 0, NULL)?

c language-lawyer

In Python 3.2, is "lambda" considered a "keyword," an "operator" or both?

Exception safety of std::function

Is `*` (the asterisk) a keyword in C11?

Creation of unique type ID with c++11

C++11 : Is it possible to give fixed-template-parameted template to varidic-template-template-parameter?

gcc and clang both elide the call to the move constructor in the snippet below. Is this correct?