Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Are there any pitfalls in using move() instead of std::move()?

c++ c++11 move

c++ multiple processes writing to the same file - Interprocess mutex?

std::chrono doesn't work if passing a variable

c++ c++11 std

vector of vector with different types

c++ c++11 vector boost stl

Compile time hash with constexpr

Should FreeLibrary be called at the end of the program?

c++ c++11 dll loadlibrary

Is it possible to use a lambda function inside of a vector's constructor?

std::map<string, string> to string (first values)

Variadic Template Parameter Packs with Alternating Types

Why does std::sort work when the comparison function uses greater-than (>), but not greater-than-or-equal (>=)?

c++ c++11

Converting C uint8_t pointer + size combination to C++ iterators

c++ c pointers c++11 iterator

Ensuring that a variadic template contains no duplicates

fully separated date with milliseconds from std::chrono::system_clock

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

Constexpr class: Inheritance?

Send formatted char array to ostream without extra memory copying

c++ c++11 stdstring iomanip

Implementing 64 bit atomic counter with 32 bit atomics

std::shared_ptr, std::weak_ptr and control block

make_shared with template constructor

Using a type that depends on lambda function as a return type

Question on unique_ptr behavior w.r.t particular usage of std::move