Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is there a special rule for lambda in case of decltype(auto)?

g++ and clang++ different behaviour with template specialization for auto argument

Template argument deduction for an argument of a function type

Different SFINAE behavior of `std::tuple_size_v` on different compilers

c++ language-lawyer c++20

When are two function templates considered as partially ordered and when are ambiguous?

Type punning a struct in C and C++ via a union

Can a nonstatic member of a template specialize to data or function?

Inner member visibility in class

c++ language-lawyer

What does noexcept exactly encompass for constructors?

Access to private static function during static member initialization

What is `scanf` supposed to do with incomplete exponent-part?

c language-lawyer c99 glibc

Is it well-formed, if I redefine a variable as auto, and the deduced type is the same? [duplicate]

Does an object created with placement new have dynamic storage duration?

c++ language-lawyer

Why does fgets accept an int instead of a size_t?

c language-lawyer size-t

Differences between decltype(void()) and decltype(void{})

In C language, is it semantically possible to create an lvalue with incomplete type?

Will i=i++ be newly well-defined in C17?

Is the truthiness of a dualvar always that of its string part?

Why does `polymorphic_allocator` take a `memory_resource` pointer and not a reference?

Do reference invalidation guarantees automatically apply to pointers?