Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Best way to define class-scoped constant in C++

c++ c++11 static constants

In a trivially copyable struct shall the move semantics be implemented?

copy elision visible side effect

c++ c++11 copy-elision

Overload function for rvalues and lvalues

c++ c++11 overloading rvalue

Value category of member enumerator

c++ c++11

"is private within this context" is being thrown for function which should not be private (GCC 5.3.0, C++11)

c++ c++11 gcc

Pushing and popping the first element of a std::tuple

Converting Tuple to string

c++ c++11

How does std::sort handle NaN values?

Multiple arguments in user-literals

c++ c++11

C++ cannot call set_value for promise move-captured in a lambda?

GoogleTest Framework seems not to work with Lambda functions (follow up)

C++11 std::condition_variable - notify_one() not behaving as expected?

using std::chrono::high_resolution_clock to write a frame 30 times per second

c++ c++11 c++-chrono

Can't we manage std::map<string,ofstream>?

c++11 ofstream

c++ efficiently get substring of string with index

c++ c++11 substr

Is visual c++ std::isfinite() standard conforming?

c++ c++11 cmath

What is key difference between regex_iterator and regex_token_iterator?

c++ regex c++11 stl

make_shared and abstract polymorphism

Is this use of std::promise thread safe?