Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Are local variables in a compound switch statement initialized when the `default:` label is put outside the braces?

c language-lawyer

Why SFINAE gets messed up when changing the place of the class template specialization? Is this a C++ bug?

Same address, multiple shared_ptr counters, is it forbidden by C++ standard?

Why can member variables not be used as defaults for parameters? [duplicate]

Is rule 3 in section 3.3.7/1 from N3936 redundant?

Safety of static_cast to pointer-to-derived class from base destructor

Is this a mistake in the definition of the sign bit for integer types in the C standard?

c standards language-lawyer

std::vector::resize(size_type) requires CopyInsertable?

c++ c++11 language-lawyer

How can `f();` be a declaration below?

C preprocessor macro arguments with space at the end for concatenating?

May a standards-compliant C assert() evaluate its argument multiple times?

getc() as macro and C standard library function definition, coherent?

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?