Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

alignas keyword not respected

c++ c++11 alignas

Using different Standard C++ library headers with Intel compiler

c++ c++11 icc

Why Does the Standard C++ Grammar Not Cover this Case?

Pass a custom function as template parameter within 1 statement

'this' pointer changes in c++11 lambda

pointers c++11 lambda

Pointer to data member of incomplete type

c++ c++11 visual-c++

Copying vector<shared_pt<T>> to vector<shared_ptr<const T>> (different cases) C++

c++ c++11 c++14

shared_ptr, unique_ptr, ownership, Am I overdoing it in this particular case?

c++ c++11 c++14 shared-ptr

How should I use placement new with a custom allocation API?

What data structure should I use to model a database/table?

c++ c++11 data-structures

Is it possible to create a trait to answer if a type comes from std?

Does a constexpr move constructor ever make sense?

Difference in behaviour of max_element and minmax_element in C++ STL

c++ c++11 stl c++14

Is there a useful scenario for moving const objects?

c++ c++11 move-semantics

Is it safe to use const char * literal as a std::map key?

rvalue data member initialization: Aggregate initialization vs constructor

c++ c++11

Static vs. Member Operator Overloads: std::operator<< and std::ostream::operator<<

What is the fastest way to get the current time in C++11?

c++ performance c++11 time

auto assignment in if clause

c++ c++11 c++14

What is the reasoning behind libc++'s 16-byte alignment pattern for std::basic_string?

c++ string c++11 libc++