Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11 - I lost a move/copy assignment

c++ c++11

C++11 variadic templates and comma-separated expressions equivalence

Is there valid "use cases" for Undefined Behaviour?

c++11 undefined-behavior

Is it possible to get the return type of a function without passing arguments to it?

c++ c++11

Memory Leaks in Visual Studio

c++ using time() with both <time.h> and <ctime> included - which one takes precedence?

c++ c++11 namespaces

Functors vs. std::bind

c++ c++11 boost-bind

Friend function not working

c++ c++11

Which constructor does this semantics call?

c++ c++11

Get size of std::bitset without instance

a function returning reference to real or imag values of a complex number in C++11

c++ gcc c++11 complex-numbers

Is a std::unique_ptr moved into a std::vector when using push_back?

STL map<string, string>, assign 0 value to a key causes compile error

c++ string c++11 stl

C++ memory ordering

c++ c++11 memory-model

Best way to cast numbers into strings in C++? [duplicate]

c++ string c++11 casting numbers

free() hangs when passed a valid pointer created by posix_memalign() - gcc and C++11

c++ gcc c++11 posix free

vim you complete me error on c++11 syntax

c++ vim c++11 clang vim-plugin

Resizing std::vector without destroying elements

c++ c++11 vector

Immutable "functional" data structure in C++11

Is there any valid reason for not using public virtual methods? [closed]

c++ c++11 polymorphism