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

std::unique_ptr pimpl in dll generates C4251 with visual studio

SFINAE works with deduction but fails with substitution

GCC 4.8 is reversing variadic template parameter pack

c++ templates gcc c++11 variadic

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?

Incorrect assignment of values in char enum

C++: Nested template classes error "explicit specialization in non-namespace scope"

c++ templates c++11

std::is_base_of for template classes

c++ templates c++11

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

c++ performance c++11