Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Identity of template aliases

Safely release a resource on a different thread

c++ multithreading c++11

function template as member - GCC vs. CLANG

c++ c++11 clang++

Template alias, Template specialization and Template Template parameters

constexpr unique id, compiles with clang but not with gcc

c++ c++11 gcc constexpr

`std::terminate` invocation in a `noexcept` function with limited visibility - gcc vs clang codegen

Is the constexpr specifier required on the declaration of a constexpr static member initialized outside of the class?

Why does this code make the VC++ compiler crash?

C++ 11 regex stack overflow / VS2012

Why are the std::atomic_{char,schar,etc.} typedefs allowed to be typedefs to a base class of std::atomic<T>, and not to atomic<T> only?

Temporary const array not binding to rvalue reference

Memory corruption with std::initializer_list [duplicate]

c++ c++11 memory-corruption

constexpr versus template, pow function

c++ templates c++11 gcc4.8

Emacs, cedet and c++/c++11 support

c++ linux c++11 emacs

Initializing std::array<char,x> member in constructor using string literal. GCC bug?

Why destructor of a moved from object is invoked?

c++ c++11 move

Using curly braces to value-initialize temporary as initializer to static data member causes error

c++ c++11 gcc

How to alias a nested template class with variadic parameter packs

In new code, why would you use `int` instead of `int_fast16_t` or `int_fast32_t` for a counting variable?

c++ c++11 int

C++11: should I use valarray or vector for numerical computing

c++11 valarray