Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How do implicitly declared (object level) member functions work according to the ISO C++11 standard?

c++ c++11

Will std::basic_string destroy null termination every time?

c++ c++11 gcc7

Why is it not possible to remove elements from a std::map using reverse iterators?

Throw an exception into another thread

std::shared_ptr: Custom deleter not being invoked

c++ c++11 shared-ptr

Is there any restriction when passing a r-value to a constructor?

c++ c++11

CUDA 7.0, invalid argument '-std=c++11' not allowed with 'C/ObjC'

c++11 cuda clang

How can I use a wregex in C++11?

regex visual-c++ c++11

Initialization of variadic base classes

c++ templates c++11 variadic

difference between introducing using std::cout vs std::string::size_type to a source file

c++ c++11 namespaces using

Using declval with a reference type

c++ c++11 reference declval

Correct usage of smart pointers and programming style

c++ c++11

Why do 1ll << i does give us correct answer but not long long i ; 1<<i?

c++ c++11 bitwise-operators

Const correctness with reference_wrapper

c++ c++11 reference-wrapper

C++ Break out of a function at an early stage

c++ c++11 stl

Sequence Points and Method Chaining reloaded

Is there a class/template in std library to perform a task when out of scope?

c++ c++11

Valid to use future after corresponding promise leaves scope

c++ c++11 asynchronous

Can I get a const dependent name from a const type template argument when instantiating a template?

c++ c++11 templates

Do you need to store the std::future return value from std::async?

c++ c++11 stdasync