Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to avoid this kind of code repetition?

Will compiler unroll "for" loop when iterating a const container?

c++ c++11

What's the difference between T, volatile T, and std::atomic<T>?

Is it bad that C++0x's lambda expressions don't have a named type?

c++ lambda c++11

Can I Have Polymorphic Containers With Value Semantics in C++11?

c++ stl c++11

C++0x Tuples Store Elements Backwards

c++ c++11 memory tuples stdtuple

G++ doesn't compile C++0x range-based for loop

c++ c++11 g++

Why is there no vector(size_type n, const Allocator& alloc) in C++11?

c++ vector c++11 allocator

insert in unordered_set a new element: should the hint be end()?

c++ stl c++11

Function local static function-object that's initialized by lambda, thread-safe or not?

How to use c++0x thread in Android NDK?

c++ c++11 android-ndk pthreads

Trivial Destructibility and Necessity of Calling Destructor

User-Defined String Literals Vs. Other User-Defined Literals

can I have main window procedure as a lambda in WinMain?

c++ winapi c++11 lambda

C++ function template argument with templated type struct woes

std::make_pair : cannot convert 'ch' (type 'char') to type 'char&&' [duplicate]

c++ c++11

Cannot dynamic cast when using dynamic_pointer_cast

C++ chain of tasks

c++ multithreading boost c++11

SMART vector for RAW pointers in C++11?

c++ c++11 smart-pointers

Use member function in std::packaged_task

c++ multithreading c++11