Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

How to initialize a vector of unique_ptr with null pointers?

c++ stl c++14 unique-ptr

Adding element to back of STL container

c++ c++11 stl c++14

Why does std::cbegin return the same type as std::begin

c++ iterator c++14

Can be std::function inlined or should I use different approach?

Is it direct-initialization or copy-initialization?

How do I use Templates to make aliases with `using` (making parameterized aliases) in C++?

c++ templates c++11 c++14 using

What is s in std::this_thread::sleep_for(2s)?

c++ c++14

Pass parameters to std::thread wrapper

c++ c++14

C++ templates, default argument as a method

Exception behavior C++14 vs C++98

c++ exception c++14 c++98

SFINAE to assert() that code DOES NOT compile

c++ c++14 sfinae

Storing a raw pointer returned from a method into a smart pointer

c++ c++11 c++14

C++: Force lamba instances to have unique static variables

c++ lambda c++14

Why can't I use reference in std::future parameters

c++ c++11 c++14

Apply the first valid function of a set of N functions

Where in C++14 Standard does it say that a non-constexpr function cannot be used in a definition of a constexpr function?

Surprise in template parameter substitution?

c++: constexpr function doesn't evaluate at compile time when using with std::cout [duplicate]

c++ c++14

auto fail to deduce correct return type

c++ c++14

How to fill an array of unique_ptr?