Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

What do compilers do with compile-time branching?

Why is passing by value (if a copy is needed) recommended in C++11 if a const reference only costs a single copy as well?

c++ c++11 move-semantics

C++ atomic_flag query state

Access elements in std::string where positon of string is greater than its size

Using auto in loops c++

c++ loops c++11 auto

Lambda of a lambda : the function is not captured

c++ c++11 lambda std-function

C++11 member initialization list ambiguity

c++ linux c++11

How std::bind works with member functions

c++ c++11 std stdbind

How do you make std::shared_ptr not call delete()

c++ c++11 shared-ptr

What are the rules for automatic generation of move operations?

c++ c++11 move-semantics

Why does GCC -O3 cause infinite std::distance with filter iterators over a std::deque?

Detecting constexpr with SFINAE

C++ decltype deducing current function returned type

Is there an automatic noexcept specifier?

c++ c++11 c++14 noexcept

Query the alignment of a specific variable

c++ c++11 memory-alignment

Why are c++11 random distributions mutable?

c++ random c++11

Can a std::function store pointers to data members?

How would you use Alexandrescu's Expected<T> with void functions?

Getting around the reinterpret cast limitation with constexpr

Should I use noexcept for getters always?

c++ c++11