Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 range-based for() loops evaluate once or multiple times? [duplicate]

c++ for-loop c++11 foreach

`static constexpr auto` data-member initialized with unnamed enum

Does the C++ standard mandate that C-linkage functions are `noexcept`?

How can a type with suppressed move construct/assign still be considered moveable?

c++ c++11 move-semantics

Template picks const reference over const pointer

c++ c++11 templates

Returning a void?

c++ templates c++11 return void

Is it possible to alias an enum-class enumerator?

Classes with both template and non-template conversion operators in the condition of switch statement

C++11: Explicit instantiation declaration vs. explicit instantiation definition

c++ templates c++11

Are unnecessary include files an overhead?

Is it possible in C++ to do std::map<> "for element : container" iteration with named variables (eg, key and value) instead of .first and .second?

Does MSVC10 Visual Studio 2010 support C++ range based loops

c++ c++11

What constitutes a valid state for a "moved from" object in C++11?

What is the relationship between iostream and namespace std?

c++ c++11 namespaces

Move a unique_ptr with custom deleter to a shared_ptr

What's a use case for overloading member functions on reference qualifiers?

Replace fixed size arrays with std::array?

c++ arrays c++11 stl

Garbage Collection in C++11

Should I use shared_ptr or unique_ptr? [duplicate]

What happens when using make_shared