Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++ : How to ensure that a class member variable is modifiable only within a certain method

c++ c++11 c++14

Partial Specialization of tuple contents with variadic arguments

C++: Overloading the [ ] operator for read and write access

Does g++ meets std::string C++11 requirements

c++ string c++11 g++ std

Programmatic initialization of a long array at compile or initialization time

c++ c++11 initialization

std::move vs std::auto_ptr?

Is it possible for a function to only accept a limited set of types for a given argument?

auto it = vector.begin() resulting type is not convertible to const_iterator

If lambdas don't have a specified type, how does std::function accept a lambda?

c++ c++11

Have You Started Using C++0x?

c++ c++11

When will adding a move constructor and a move assignment operator really start make a difference?

When you perfect-forward, typename T becomes a T& or T&&, but when you don't, T isn't a reference at all. How?

c++ templates c++11

Erroneous "Unable to resolve identifier" in Netbeans

c++ c++11 netbeans netbeans-8

Why does sizeof(!0) print 1 instead of 4?

c++ c++11 sizeof

What is the difference between declaring a variable using auto and using the type-name?

c++ c++11

What is the difference between a dangling pointer and memory leak?

Why lambda returns bool?

c++ qt c++11 return return-type

Why is map<bool,int> m={{1,2},{3,4},{5,0}}; size 1 and not 3?

Reference initialization in C++11 default constructor

c++ c++11

How to avoid code duplication with function overloading

c++ c++11 overloading