Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

fastest way to share data between a C++ and Python program? [closed]

python c++ c++11

Why is nullptr a part of the core language, but nullptr_t is a part of STL?

c++ c++11 nullptr

Library plans for C++0x?

c++ qt boost c++11

Template parameter as a friend

c++ templates c++11 friend

Using C++11 in a production environment with GCC [closed]

c++: function lvalue or rvalue

c++ c++11 lvalue rvalue

What happens if I return literal instead of declared std::string?

c++ c++11

Overloading (not specializing) templates in std namespace

c++ c++11 std language-lawyer

Templates accepting "anything" in C++

C++11 creating static array from a parameter pack

Shared pointers delete recursive data structures recursively and the stack overflows

Is there any sense to make std::atomic<> objects with the qualifier - volatile?

c++ c++11 atomic

std::shared_ptr::owner_before and std::owner_less: What exactly is meant by "owner-based order"?

c++ c++11

std::sort comparing elements to null

c++ algorithm sorting c++11

C++11 code with inheritance doesn't compile with clang

c++ inheritance c++11 clang

Can pop_back() ever reduce the capacity of a vector? (C++)

c++ c++11 vector capacity

Thread Working Directory

c++ multithreading c++11

Specialize function for map like containers

c++ c++11

Confused using unique_ptr and a custom deleter

c++ c++11 unique-ptr

What is the type of "auto var = {condition} ? 1 : 1.0" in C++11? Is it double or int?