Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

_GLIBCXX_USE_CXX11_ABI, GCC 4.8 and ABI compatibility

c++ linux c++11 gcc

Why is `i = i++ + 1` undefined behavior in C++11?

c++ c++11

how to avoid undefined execution order for the constructors when using std::make_tuple

Why are is_swappable and is_nothrow_swappable not included in C++11?

Connect QML signal to C++11 lambda slot (Qt 5)

c++ qt c++11 signals-slots qt5

Does it make sense to declare inline functions noexcept?

c++ c++11 inline noexcept

Reference as a non-type template argument

c++ c++11 language-lawyer

Narrowing conversion in pair with braced initializer compiling if second attribute is not braced-initialized

c++ c++11

Default value of function parameter initialized by list initialization

How to reduce redundant code when adding new c++0x rvalue reference operator overloads

std::cout equivalent at compile time, or static_assert stringification of compile-time constant values in c++11

x[0] == 1 constant expression in C++11 when x is const int[]?

c++ c++11 constants constexpr

Why do auto and template type deduction differ for braced initializers?

Constructor-style casting in function call parameters

c++ c++11 casting

Can I template user-defined literals?

Does an exception use move semantics when thrown in C++11?

c++ c++11 move-semantics

clang++ not accepting use of template template parameter when using CRTP

c++ templates c++11 clang crtp

Can I safely use std::string for binary data in C++11?

c++ c++11 stdstring

Using new with decltype

c++ c++11 decltype

Is calling wait() on a std::future multiple times and from multiple threads safe?

c++ multithreading c++11