Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How do I build a vector<> of search results from a source vector<>?

c++ c++11

Prevent templated member function from being instantiated for a given type

Do we still need to separately define static members, even if they are initialised inside the class definition?

c++ c++11 language-lawyer

SFINAE in class template constructors

Error 'this_thread': the symbol to the left of a '::' must be a type?

Are 'const' values inside a container actually disallowed?

c++ c++11 language-lawyer

How are the C++11 memory barriers implemented for x86-like systems?

Return Struct from a C++ function to Python in SWIG

c++ python-2.7 c++11 struct swig

Do static_assert on every other type in a template

c++ templates c++11

order of evaluation of arguments to a constructor [duplicate]

c++ c++11

Troubles with 'bind' and 'function'

c++ c++11

Where in the C++11 Standard does it say that char* p = "abc"; is ill-formed?

c++ c++11 standards

C++11 code/library in non C++11 program

c++ c++11 compatibility

How does std::chrono::steady_clock::now report errors?

NVI and devirtualisation

Do atomic CAS-operations on x86_64 and ARM always use std::memory_order_seq_cst?

Understand how to compute sum at compile time

Free function with parameters, get return type

c++ c++11

Does an explicit move ctor eliminate implicit copy ctor?

Hidden move-construction

c++ c++11