Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Runtime sized arrays and pointer-decay

std::function lambda optimization

What are consequences of not calling libusb_exit()

c++ linux c++14 libusb

Removing the void specializations for std::future and std::promise

c++ c++11 c++14 future c++17

global initialization order with constexpr

c++ c++14 constexpr

compiler problems with variable template

c++ templates c++14

Return type match with auto and friend function

Can we delete an object passed as by reference?

c++ c++11 c++14

using-declaration for friend function

c++ c++11 c++14 using friend

Split range into range of overlapping ranges

c++ c++14 range-v3

Dependent Expression and ODR-use in a Generic Lambda in C++14

Hashing polymorphic type the proper way

c++ hash polymorphism c++14

Does std::vector::assign/std::vector::operator=(const&) guarantee to reuse the buffer in `this`?

Strange behavior of noexcept specifier in C++14

Compile in c++14

c++ xcode terminal putty c++14

Virtual destructors only in selected bases

c++ c++14

I need some help regarding §8/5 in the spec

Why does std::shared_ptr<T> = std::unique_ptr<T[]> compile, while std::shared_ptr<T[]> = std::unique_ptr<T[]> does not?

c++ stl g++ c++14

Are the result of bitwise operations on signed integral types well-defined?

Signed bit field in C++14

c++ c++14 bit-fields