Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to return a std::string.c_str()

c++ string pointers c++11 return

Compiler error C3493: 'func' cannot be implicitly captured because no default capture mode has been specified

Difference between char and signed char in c++?

c++ c++11 char signed typetraits

Using export keyword with templates

c++ templates c++11 export

How can I access local variables from inside a C++11 anonymous function?

How do I switch/select types during compile-time?

(Why) should a move constructor or move assignment operator clear its argument?

c++ c++11 move-constructor

Is it possible to std::move local stack variables?

c++ c++11 move move-semantics

C++11 styled callbacks?

c++ c++11

Expansion with variadic templates [duplicate]

Is unique_ptr thread safe?

Inconsistency between std::string and string literals

Deletion of copy-ctor & copy-assignment - public, private or protected?

Travis CI with Clang 3.4 and C++11

Difference between pointer and reference as thread parameter

Difference between steady_clock vs system_clock?

c++ c++11 timestamp

Is this behavior of vector::resize(size_type n) under C++11 and Boost.Container correct?

c++ boost c++11 vector

How do I give streams better exception messages?

C++11 atomic memory ordering - is this a correct usage of relaxed (release-consume) ordering?

Why do shared_ptr deleters have to be CopyConstructible?