Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

constexpr array of constexpr objects using move ctor

c++ c++11 c++14 constexpr

What does T& mean for some template argument T? [duplicate]

Extern template for template parametrized with incompete type

How to store non-copyable std::function into a container?

c++ function c++11 move

VS2015 Internal Compiler Error when using inheriting constructors

Inheriting constructors and brace-or-equal initializers

What's the point of std::function constructor with custom allocator but no other args?

c++ c++11 std-function

storage duration of underlying character data with user-defined string literal

Is std::thread::id unique across processes?

c++11 stl stdthread

Correct way to use std smart pointers to ensure ptr safety

c++ pointers c++11

How to delete shared_ptr content and replace it with new object?

c++ c++11

Why is the return type of std::reverse_iterator::operator[] unspecified?

c++ c++11 stl language-lawyer

C++ implicit conversions with brace initializers

Is there any way for compile-time check of string user-defined literal?

How to make a function template that takes a functor with variable arguments

c++ c++11 templates lambda

Calling function in a namespace without qualification

c++ c++11 namespaces

Inconsistencies with conditional noexcept and overloads

Is it good practice to override the destructor?

Why does removing the default parameter break this constexpr counter?

How to extend lifetime of the local variable or what is right way to use references