Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is it really well defined to check pointer alignment using the pointer's integer value?

Preference of conversion operator over copy constructor changes from C++14 to C++17?

Why does friendship seem transitive with befriended function templates?

What does the C++ standard says for algorithms when first <= last is not fulfilled?

Can a class be indestructible (have no destructor)?

c++ language-lawyer c++20

Whose responsibility is it to destroy a C++20 coroutine that throws from its initial suspend?

Is a postincrement always done before a function call?

c language-lawyer

Why can an anonymous temporary exception be bound to a reference at a catch site? [duplicate]

c++ language-lawyer

Data race guarded by if (false)... what does the standard say?

What is the type of a by-value lambda capture of a reference?

c++ language-lawyer

Is it OK to pass the address of an int for scanf("%x", ...)?

Declaration vs definition in C

c language-lawyer

Ambiguity accessing identifier in global and nested anonymous namespaces

State of the value to insert

Is "void* p = &p;" legal in C?

c language-lawyer

Is every null pointer constant a null pointer?

Templated constexpr function invocation with partially defined class changes subsequent results

Are conformant array parameters VLAs?