Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Parallel Loops in C++

C++11 auto declaration with and without pointer declarator

What changes introduced in C++14 can potentially break a program written in C++11?

What does `std::kill_dependency` do, and why would I want to use it?

The precision of std::to_string(double)

c++ c++11

Differences between Conditional variables, Mutexes and Locks

c++11 foreach syntax and custom iterator

c++ iterator c++11

error: ‘unique_ptr’ is not a member of ‘std’

c++ c++11 g++ unique-ptr

std::shared_ptr initialization: make_shared<Foo>() vs shared_ptr<T>(new Foo) [duplicate]

With explicitly deleted member functions in C++11, is it still worthwhile to inherit from a noncopyable base class?

c++ c++11 noncopyable

C++ priority_queue with lambda comparator error

why do I need std::condition_variable?

c++ c++11 concurrency

How can I make a variable always equal to the result of some calculations?

c++ c++11

Why is there not an std::is_struct type trait?

c++ c++11 typetraits

Does new char actually guarantee aligned memory for a class type?

c++ c++11 language-lawyer

Should custom containers have free begin/end functions?

Should I default virtual destructors?

Why does std::move prevent RVO?

c++ c++11 move-semantics rvo

How to convert errno to exception using <system_error>

c++ exception c++11

Are there any concurrent containers in C++11? [closed]