Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Exception in std::vector<>::emplace_back() safe?

Lambda's "this" capture returns garbage

What does libstdc++'s std::vector<bool>::data do?

c++ c++11 gcc libstdc++

Compiler warning when a class breaks rule-of-three (five)

c++ c++11 gcc compiler-flags

How to fix 'cannot initialize return object of type Base* with an lvalue of type value_type (aka Derived*)?

Is there a "generic" iterator type to be used in C++ for function parameters?

c++ c++11

std::merge doesn't work with std::async

c++ c++11

What is the C++ way of handling a framework to call functions of different types from a script?

Having virtual methods as templates that receive iterators

Create a vector of shared_ptr to ints

Is it a good habit to reset self to nullptr when use move-constructor?

c++ c++11

Return a unique_ptr by reference

c++ c++11

why c++ use memset(addr,0,sizeof(T)) to construct a object? Standard or compiler bug?

Why is it necessary to to use set.find(x) != set.end() while finding an element.

c++ c++11 stl c++14

g++ compiler error on deleted assignment operator of pair<string,string>

c++11 stl

Safely compare integer to strongly typed enum

c++ c++11

is std::function heavier than auto storing lambda function

To get disassembly of an overloaded member function in GDB - C++

c++ c++11 gdb c++14

Usefulness of volatile in concurrent programming since C++11

c++ c++11 concurrency volatile

Inserting multiple not-a-numbers into a std::unordered_set<double>

c++ c++11 ieee-754