Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What causes this constructor to delegate to itself when it takes an initializer list and delegates a vector?

c++ c++11 c++14

Constexpr compound assignment operator in clang and gcc

Variadic function calling a variadic macro

How to solve a circular class dependency with shared base class without headers?

The right way to work with network buffer in modern GCC/C++ without breaking strict-aliasing rules

c++ c++11 gcc strict-aliasing

auto and brace initialization in C++11/C++14 [duplicate]

c++ c++11 gcc clang c++14

Error when checking if a tuple of references is default constructible

c++ c++11 std c++14 stdtuple

Is it possible to implement Q_PROPERTY READ/WRITE accessors without using member functions?

qt c++11 qml

returning constant object and assigning it to non-constant object

"Conversion" from type to same type is causing error

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