Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is it good practice to bind shared pointers returned by functions to lvalue references to const?

C++ function call with default argument in std::array?

Type traits which are true for all const/volatile/signed/unsigned version of a fundamental type

Can a C++ Compiler Eliminate a Volatile Local Var that is not Read

Rules for constexpr functions

c++ c++11 constexpr

Dealing with unique_ptr in containers

using with class & namespace differencies/ambiguity

c++ c++11

Get template function type

Is initialization order guaranteed

c++ c++11

Adding a map function to a vector in C++11

c++ c++11

Why is C++11 std::array a struct rather than a class?

c++11 stdarray

Forcing race between threads using C++11 threads

c++ multithreading c++11

In class initialization and initializer list

Enum error: 'enum' : missing tag name

c++ class c++11 enums

Selectively suppress "unused variable" warnings for unused lambdas

Compiling C++11 sources for Android NDK

android c++ c++11 android-ndk

Thread joining issue

Should I write iterators for a class that is just a wrapper of a vector?

c++ c++11

std::async not executing when specifying launch::async

According to the standard, is std::vector affected by the static initialization order problems?

c++ c++11 language-lawyer