Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Using std::error_code with non-integer values

c++ c++11 error-code

Android Instant App with Native C++ Library not publishing to device/simulator running Android N

Move constructor is automatic generated even a member doesn't have a move constructor?

c++ c++11 constructor

In which case will C++ do array bounds checking at compile time?

Cannot declare static constexpr char []

Singleton class with smart pointers and destructor being called

c++ c++11

Convert string element to integer (C++11)

why std::istringstream fail when I set std::locale to "zh_CN.UTF-8"?

c++ c++11

Is there a safe way to have a std::thread as a member of a class?

std::thread <unresolved overloaded function type> error

How can an incomplete type be used as a template parameter to vector here?

c++ c++11 language-lawyer

SFINAE works with deduction but fails with substitution

Thread safety of std::random_device

c++ c++11 random openmp

Using move semantics with std::pair or std::tuple

Can std::vector emplace_back copy construct from an element of the vector itself?

c++ c++11 vector stl

Range-based for loop with special case for the first item

std::result_of simple function

c++ c++11 std result-of

Why is a lambda's call-operator implicitly const?

Weird nested class partial specialization results on both gcc and clang

Will range based for loop in c++ preserve the index order

c++ for-loop c++11