Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Convert long int* to long long int*

c++ c++11

can I call destructor in move assignment operator?

Understanding C++ memory model : Different values on different runs

Why can't `auto&` bind to a volatile rvalue expression?

std::function signature pointer vs pointer reference = no difference?

c++ function pointers c++11

Duplicate const error with C++ wrapping C code

c++ c c++11 g++4.8

what is the difference between types atomic_int_fastN_t and atomic_int_leastN_t

c++ c++11

std::allocator_traits defaults with allocator that has more than one template parameter

How can I change the default seed in std::hash<>?

c++ c++11 hash

What's the right way to compute integral base-2 logarithms at compile-time?

Reference qualifiers and deleted member methods

How to deduce the return type of a std::bind object for template use?

Decompress file from Boost filtering_streambuf to std::vector<unsigned char>?

c++ c++11 boost vector gzip

Passing std::function type which has a templated return type

c++ c++11 std-function

Prettiest way to iterate all values of an unsigned integer

c++ c++11 iteration

Is it possible to assign new value to C++ vector in O(1) time?

c++ c++11 vector reference

c++ no matching function for call to vector push_back [duplicate]

c++ c++11

Is this smart pointer wrapper for SDL types safe?

c++ c++11 sdl smart-pointers

Using std::bind in std::bind : compilation error (implicit cast) [duplicate]

c++ c++11 std stdbind

Assign derived class unique_ptr to base class unique_ptr

c++ oop c++11 unique-ptr