Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Returning const values to leverage move semantics vs preventing stuff like (a+b)=c [duplicate]

C++11 Generating random numbers from frequently changing range

Friend operator in template struct raises redefinition error

C++11: Does an assignment operator prevent a type from being POD, and thus being global-initialized?

c++ c++11 initialization

Switching on scoped enum

C++11 with R and Rcpp: supported by CRAN policies?

c++ r c++11 rcpp cran

Lambda as template parameter

c++ templates c++11 lambda

error: no matching function for call to ‘to_string(std::basic_string<char>&)’

How to use a random generator as a class member in C++11

c++ c++11 random

Type erasure and variadic templated member function

What's a good way to capture member variable by value in c++11? [duplicate]

c++ c++11 g++

is it possible to implement a std::move-and-clear function?

Are weak pointers guaranteed to have expired by the time the std::shared_ptr deleter runs?

c++ c++11 c++14 shared-ptr

hiding implementation details by reducing number of populated headers

c++ c++11

Can sizeof be applied inside a lambda on a variable that is not captured or is this a compiler bug?

c++ c++11

undefined reference to `std::__cxx11::basic_string in Boost on Travis CI

c++ c++11 gcc boost travis-ci

Is move semantics just a shallow copy and setting other's pointers to null?

c++ c++11 copy move semantics

Why C++ implicit conversion works, but explicit one does not?

Should I use shared_ptr<Object> myObject = (shared_ptr<Object>) new Object() to access private constructors?

Expand two parameter packs

c++ c++11