Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Using this and attributes in member function trailing return types?

C++11 thread_local in gcc - alternatives

c++ multithreading gcc g++ c++11

Create a non-owning shared_ptr?

std::atomic load method decreases the reference count when used with std::shared_ptr

c++ c++11 shared-ptr atomic

A clean way to store a function and its (arbitrary-type, arbitrary-number) arguments

c++ c++11 variadic

What is the value category of string literals?

c++ c++11

Compute nth prime at compile time [closed]

How to port existing C++ code to C++11

c++ architecture c++11

C++ why does passing an lvalue to a move constructor work for templates?

Generalised function template for standard library containers

c++ templates c++11 stl

constexpr function not calculate value in compile time

Difference between c++ functions 'remainder' and 'fmod'?

c++ c++11

Finding out the return type of a function, lambda or function

c++ c++11

Using std::function in std::map

Why is the range of signed char -127 to 127 in C++11? [duplicate]

c++ c++11

C++ preprocessor token pasting for namespace qualification

c++ c++11 c-preprocessor

Lambda as OutputIterator

c++ c++11

How can I access a struct property by string name?

c++ c++11 vector

Why are move semantics necessary to elide temporary copies?

How to use "using" for a function?

c++ c++11 using