Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Constant condition in a loop: compiler optimization [duplicate]

Returning std::move of a local variable [duplicate]

Why does STL Set overwrite pairs with same value

c++ c++11 stl

How standard C++ input output streams have to handle intXX_t types?

c++ c++11 language-lawyer

Use std::move in C++11 move constructor with uniform initialization syntax

What happened to threadpool?

c++ multithreading boost c++11

remove_pointer analog that works for anything that supports operator*

Force constexpr to be evaluated at compile time [duplicate]

c++ c++11 constexpr

Function initialization with int& argument by int&&

c++ c++11

Could a smart compiler do all the things std::move does without it being part of the language?

c++ c++11 std move

Example of C++ 11 std::chrono::duration

c++ c++11 duration

Using "auto" keyword for std::list iterator with GCC

c++ gcc c++11

Variadic template template and SFINAE

Shared_ptr custom deleter

c++ c++11 sdl smart-pointers

Optimal uint8_t bitmap into a 8 x 32bit SIMD "bool" vector

c++11 simd avx avx2

Loss of rvalue qualifier with variadic template arguments

Is codecvt not supported by Clang or GCC?

gcc c++11 unicode clang codecvt

What is a scope for lambda function in C++11 (delegates)

c++11 lambda delegates scope

Indexing Matrix in Boost

c++ c++11 boost

Is sizeof('ab') equal to sizeof(int) in C++?