Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Is bitset guaranteed contiguity?

c++ c++11 c++14 memory-layout

Passing an array of Child objects to a function that accepts Parent*

c++ c++11 embedded avr-gcc

Double move on same object is copying from left to right?

C++11 using unique_ptr with custom deleter

c++ c++11 std smart-pointers

How to resolve const/non-const conflict in template argument deduction

std::cout deal with uint8_t as a character

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