Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++14

gcc bug? It inexplicably decays array to pointer, while clang does not

Is std::get_time broken in g++ and clang++?

c++ c++11 time c++14

Range-based for loop with decltype(auto)

c++ for-loop c++14 auto decltype

Compile time string encryption using constexpr

Are variadic arguments after a defaulted parameter well-formed?

Different compiler behavior for expression: auto p {make_pointer()};

c++ g++ c++14 clang++ icc

Can we omit the double-braces for std::array in C++14?

c++ c++11 c++14

C++ capture move initialized is const?

c++ lambda c++14

Why construction of std::unique_ptr for incomplete type compiles?

Why does Foo({}) invoke Foo(0) instead of Foo()?

Simple std::regex_search() code won't compile with Apple clang++ -std=c++14

c++ c++11 c++14 clang++

How do I declare a function whose return type is deduced?

c++ auto c++14

How to wrap a function with a varying number of default arguments to have only one argument?

`std::string` allocations are my current bottleneck - how can I optimize with a custom allocator?

Why is there no std::is_transparent equivalent for unordered containers?

c++ c++14

Why are these snippets handled differently by GCC?

About lambdas, conversions to function pointers and visibility of private data members

std::unique_ptr constexpr constructors

c++ c++11 c++14

How to use a user defined literal in a header file? [duplicate]

Is a variable an array of size 1?