Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Nice way to create a dynamic 2D matrix in C++ 11

c++ c++11

Accessing common part of an union from base class

c++ c++11 strict-aliasing

Why does "std::string(blablabla());" compile without errors?

Lambda: A by-reference capture that could dangle

c++ c++11 lambda c++14

Does template constructor with universal reference hide move construtor?

c++ c++11

Assigning Rvalue returned from function to another Rvalue

Why not always use std::forward?

c++ c++11

Type trait: Check if class have specific function (maybe inherit)

c++ c++11 typetraits

Why is raw pointer to shared_ptr construction allowed in all cases?

c++ pointers c++11 shared-ptr

Does `std::shuffle` guarantees same order with same seed on different vectors?

c++ c++11 random shuffle

shared_ptr without RTTI?

c++ c++11 gcc stl mplab

What is the preferred way to initialize a container with objects that are cheap to move but heavy to copy

How to disable std::clog logging from source code?

c++ c++11

std::make_unique<T[]>(size) value-initialization

c++ c++11 c++14

explicit constructor of the wrong type called

c++ c++11 constructor c++14

Compiler error when destructor declared in class body with unique_ptr as member of the same class

Is RVO applied on this situation?

c++ c++11 rvo nrvo

How to understand atomics in a freestanding C or C++ implementation? [closed]

c++ c c++11 c11

static const cached result

c++ c++11 static constants

Referencing a possibly destroyed static object

c++ c++11 static-variables