Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

check if a c++11 feature is enabled in compiler with CMAKE

c++ c++11 cmake

What type of heap is used and time complexity of std::priority_queue in c++? [duplicate]

How to pass a default parameter for std::shared_ptr<PureVirtualClass>

Raspberry Pi optimized backtrace()

c++11 raspberry-pi

C++: Is it safe to pass an argument like unique_ptr::get() to function

How to avoid undefined behaviour with aligned_storage and polymorphism

c++ c++11 reinterpret-cast

Why is an overloaded delete not called when an exception is thrown in a destructor?

Is this compiler transformation allowed?

using std::function::target correctly

c++ c++11 c++17

In 2018 with C++11 and higher, are helper init() functions considered bad form?

c++ c++11

strong enum typedef: clang bug or c++11 standard uncertainty?

Assign a value to an rvalue reference returned from function

Passing a std::shared_ptr<T> to a function that takes a std::shared_ptr<const T>?

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

std::this_thread::yield() usage?

Can tr1::function swallow return values?

c++ c++11 tr1 boost-function

Is this C++0x optimization legal?

c++ c++11

Why am I failing to capture the "this" pointer by a lambda?

c++ c++11 lambda this

A preprocessor #define to check for language version? C++98/C++03/C++11

c++ c++11

Expression templates and ranged based for in C++11

When are special member functions of a template class instantiated?