Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

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

Debug a lambda capturing this

c++ c++11 lldb

valgrind reporting invalid read with std::string

c++ c++11 gcc valgrind

Efficient way to map unique and duplicate value. Where key or value can be access

c++ c++11 stdmap

Comparison between signed and unsigned. Is static_cast the only solution?

Deducing a const l-value reference from a non-const l-value reference in C++ template

Can we use a lambda-expression as the default value for a function argument?

c++ c++11 lambda

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

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

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

Weird nested class partial specialization results on both gcc and clang

Incorrect assignment of values in char enum

C++11: Why does this range loop decrease FPS by 35?

c++ performance c++11