Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

Does C++14 define the behavior of bitwise operators on the padding bits of unsigned int?

Return type of decltype when applied to ternary(?:) expression

c++ c++11 c++14

Passing a function pointer from an array of function pointers as a template argument

c++ templates c++14

Initialization of shared_ptr<T> from unique_ptr<T[]>

Difference between T t {x} and T t = { x } for integral or enumeration type?

c++ deduce the type of a nested exception

c++ c++11 exception c++14 c++17

Correct way to pause & resume an std::thread

c++ c++11 lambda c++14 stdthread

Does standard C++11 guarantee that std::async(std::launch::async, func) launches func in separate thread?

Can a C++14/17 project use binary libraries compiled using C++11 standard or does the source code need to be recompiled?

Applying a function to each element of a tuple

c++ tuples c++14

Strings in headers -- does this violate the ODR?

Comparing optimized builds with switch case and polymorphism

calling non constexpr function from constexpr allowed in some conditions

c++ c++14 constexpr

Template aliases conflicting types. g++ compiles successfully while clang fails

Switching back and forth between Array of Structures (AoS) and Structure of Arrays (SoA)

Why explicit std::move is needed when returning compatible type?

c++ c++11 c++14 move-semantics

Can we refer to member variables in a noexcept specification?

Decay types before passing to std::result_of

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

How to elide copy when chaining?

c++ c++14 c++17

Auto deduced return types in forward declaration and mixing with old function syntax