Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is C++03 a new version of the C++ Standard or just a Technical Corrigendum (TC) of C++98?

In Rust, what happens if main function returns Err?

Is an object fully constructed at the end of the initialiser list?

c++ language-lawyer

References to static objects in inline functions with external linkage

Initialization vs Assignment in C

c language-lawyer

MSVC accepts std::string array initialized with string literal but gcc and clang rejects

using vs. typedef - is there a subtle, lesser known difference?

Union's default constructor is implicitly deleted

c++ language-lawyer

What should `foo.template bar()` do when there's both a template and a non-template overload?

c++ language-lawyer

Is it possible in C (not invoking UB) to check if two objects overlap?

c language-lawyer

Is it OK to use longjmp to break out of qsort?

c language-lawyer qsort setjmp

Why is void() legal whereas void{} is not? [duplicate]

c++ language-lawyer c++20

Function pointer compatibility between single pointer and empty parameter lists

c language-lawyer c99 c23

Copy-initialization of array type

c++ language-lawyer c++20

Construct an empty object without the default constructor

Conversion rank of bit-precise integers

c language-lawyer bitint

Can I access 'this' from a constructor's function-try handler?

c++ language-lawyer

Dynamic arrays in C++ without Undefined Behavior

Accessing an array out of bounds, but returning earlier - UB?

c++ language-lawyer