Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What's wrong to reset std::unique_ptr to pointer to array?

Trivial compile time check for no copy constructor

c++ c++11

How to use priority_queue with a non-static compare method of class instance?

Given (a, b) compute the maximum value of k such that a^{1/k} and b^{1/k} are whole numbers

c++ algorithm c++11 math

c++ destructor return type

Class Template specialization for multiple types

c++ c++11 templates

Are non-static class members destroyed even without a destructor?

c++ c++11 destructor

Will unique values in uint64_t also be unique in int64_t

c++ c++11 language-lawyer

Overloads of std::isnan and std::isinf for integral types

c++ c++11 language-lawyer

"unix" C++ preprocessor macro is undefined with -std=c++11

c++ c++11 unix preprocessor icc

User-defined Literal Operator on Macros

c++ c++11 c++17

can std::async int a function quit out before task is finished?

How to return a 3D array from user defined function?

Why C++ does not move to a 'unversioned model' like HTML/HTML5? [closed]

c++ html c++11

Copy Elision and rvalue reference

c++ c++11

Perfect forwarding

c++ c++11 forwarding decltype

`shared_ptr` breaks constness of the object

c++ c++11 constants shared-ptr

How to determine a larger type of a decltype expression

c++ c++11

Is it possible to generate a parameter pack?

In c++11, is there ever still a need to pass in a reference to an object that will accept the output of a function?