Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ std::atomic and shared memory? [duplicate]

c++11 gcc memory atomic

Limit constructor scope in nested struct

c++ c++11

How to implement std::hash for a class template

c++ c++11 templates

Fill vector with true value

c++ c++11 vector std stdvector

Making a regular function wrap a member function with templates

Why does the declaration `void(*pf)(int) = bar;` fires the `static_assert` in the snippet below?

c++ templates c++11

In this example by Bjarne, why can you pass a const qualified object to a non-const parameter?

c++ c++11

Why dependent template name accepted without keyword?

How to convert unicode characters to uppercase in C++

How is std::mutex's constexpr constructor implemented?

Class method with number of arguments specified by integer template parameter

c++ templates oop c++11

Aliasing a template template parameters

c++11 templates

Is std::move(a).m an xvalue or a prvalue?

Making an unary operator binary

Why is std::get not a member function of std::tuple et al.? [duplicate]

c++ boost c++11 tuples

How can I return a copy of a vector containing elements not in a set?

c++ stl c++11

Is int arr[ ] valid C++?

In allocator-aware STL classes, why are the allocators not template template arguments?

c++ c++11 allocator

How to "reduce typing to create C++ types" with Uniform Initializers?

How to find out what a cstyle cast actually does?

c++ c++11 visual-c++ casting