Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why does a condition variable need a lock (and therefore also a mutex) [duplicate]

How can std::chrono::duration::duration() be constexpr?

c++ c++11 chrono

Managing trivial types

C++: Why does numeric_limits work on types it does not know?

constexpr undefined behaviour

Why does a perfect forwarding function have to be templated?

Where in the C++11 standard does it specify when a constexpr function can be evaluated during translation?

c++ c++11 constexpr

cygwin g++ std::stoi "error: ‘stoi’ is not a member of ‘std

c++11 g++ cygwin

How to write a C++11 template that can take a const iterator

Is 'typedef' automatically inherited in C++ class?

c++ c++11

What's the difference in undefined behavior between C++03 and C++11?

Standard Layout c++

c++ c++11 standard-layout

vector's emplace_back

c++ stl c++11

Nested struct breaks constexpr despite being identical to global ones

c++ c++11 constexpr

Order of evaluation and undefined behaviour

Are there any C++ language obstacles that prevent adopting D ranges?

c++ c++11 d range c++14

C++11 initializer with ambiguous function id-expression?

c++ c++11

Is it bad practice to call a virtual function from constructor of a class that is marked final

SSE 4 instructions generated by Visual Studio 2013 Update 2 and Update 3

Why does std::binary_search return bool?

c++ c++11 stl-algorithm