Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++

When shrinking a container via resize, in which order are the elements destroyed?

c++

When is it a good idea to use std::promise over the other std::thread mechanisms?

c++ c++11 stdthread

get<string> for variants fail under clang++ but not g++

c++ c++17 clang++ variant

Why can't I initialize this std::vector with an l-value?

Custom (pool) allocator with boost shared_ptr

c++ boost shared-ptr allocator

C++ Conversion operator for converting to function pointer

Fastest inline-assembly spinlock

Is it possible to declare a pointer to a function with unknown (at compile time) return type

Generate XML documentation comments for /// in Visual Studio 2010 C++

c++ xml comments

Is there a way to use a using-declaration inside a requires-expression

When is p.stem() + p.extension() != p.filename()?

c++ std-filesystem

Set the leading zero bits in any size integer C++

Is it possible to move a boost::optional?

What is the proper way to build for macOS-x86_64 using cmake on Apple M1 (arm)?

When should I use a std::inplace_vector instead of a std::vector?

c++ std c++26

Examples using reinterpret_cast that do not trigger UB

Use of std::move in std::accumulate

c++ move-semantics stdmove

Only copiable type not accepted in msvc std::vector implementation

Embed Java into a C++ application?

Why sizeof built in types except char is compiler dependent in C & C++?

c++ c types