Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 introduced exception constructors taking `const char*`. But why?

Use cases for std::error_code

c++ c++11 error-code

What's the future of std::valarray look like?

c++ c++11 numerics

Simultaneously iterating over and modifying an unordered_set?

c++ c++11

How to detect if a method is virtual?

Library design: allow user to decide between "header-only" and dynamically linked?

C++ vector of arrays

Enum to string in C++11

c++11 enums

Why are override and final identifiers with special meaning instead of reserved keywords?

c++ c++11 keyword

Range of UTF-8 Characters in C++11 Regex

c++ regex unicode utf-8 c++11

C++ 'typedef' vs. 'using ... = ...' [duplicate]

Nested C++ template parameters for functions

c++ templates c++11

Does the standard behavior for deleters differ between shared_ptr and unique_ptr in the case of null pointers?

std::remove with vector::erase and undefined behavior

c++ algorithm c++11 vector stl

Efficiency of postincrement v.s. preincrement in C++ [duplicate]

c++ c++11

Move Assignment incompatible with Standard Copy and Swap

Who is responsible for deleting the facet?

c++ c++11 locale

Why use a function rather than a reference to member?

c++ class c++11 reference

Using a function pointer with a trailing return type

c++ c++11 function-pointers

What is the difference between using explicit fences and std::atomic?

c++ c++11 atomic memory-fences