Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

Finding Min and Max numbers in a txt file

c++ c++11 c++14

Append structs to a vector<uint8_t>

c++ c++11

Forward-declaring class from generic namespace (in std::hash

C++ - proper way to map objects (like strings) to member functions in table

std::is_base_of and virtual base class

c++ c++11 enable-if

String literal binds to a non-const char pointer

c++ c++11

publication safety, relaxed memory models and memcpy

Lambda function throwing error if return type is changed from auto to bool

c++ c++11 lambda auto

Why compiler cannot deduce template template argument?

warning: offset of on non-standard-layout type 'DerivedClass'

c++ c++11 memory-layout

generic observer pattern

c++ c++11 observer-pattern

initializer_list<T> can't convert to initializer_list<U>, but T convertable to U

c++ c++11 initializer-list

Overloading the class subscript operator to access elements of a member std::vector object

Is everything provided by TR1 now available in C++14 and easy to make use of? [closed]

c++ c++11 c++14 tr1

Why can't I use an arbitrary nesting of braces to construct most classes?

c++ c++11