Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Initializer list in user-defined literal parameter

c++ c++11

Passing position of variadic template argument

-std=c++11 flag unrecognized in gcc/g++ 4.4.6

Boost.Pointer Container made obsolete by std::unique_ptr in C++11/14?

Using C++11 unordered_set in Visual C++ and clang

STL iterator before std::map::begin()

difference between ctor{} and {} when returning non-movable, non-copyable object

c++ c++11

Do I need to use atomic<> if already guard by mutex

c++ multithreading c++11

How do iostream iterators work?

c++ c++11 iterator iostream

Warning with automatic return type deduction: why do we need decltype when return defines the type anyway?

c++ c++11 c++14

Template function specialization for template class

"constexpr" in C++14

c++ c++11 c++14 constexpr

Create alias for numeric array

c++ c++11 c++14

What's the difference between void and cv void?

c++ c++11 language-lawyer

absent std::u8string in C++11

c++ c++11 unicode utf-8

Efficient way to filter out elements from std::vector

c++ algorithm c++11 boost stl

C++ Debug Window showing "<incomplete type> for string variable

Using an object without copy and without a noexcept move constructor in a vector. What actually breaks and how can I confirm it?

c++11 move insertion for std::deque or std::list

in-place vector construction from initialization list (for class with constructor arguments) [duplicate]