Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Undefined Reference in inline function, solved with unary +

c++ c++11 static linker

using vim as a c++11 IDE

c++ vim c++11 intellij-idea

Referencing Auto Array Iterator in function

c++ arrays c++11

Testing specific class name in different namespaces (SFINAE?)

Universal and existential quantification using C++ template magic

C++ Printing a map in a case-insensitive, alphabetical order

A "hack" to get float template parameter working compiles but segfaulted on both g++ and clang

typedef works, 'using =' doesn't

function declaration without definition

why we should put `std::unique_lock` under a local scope?

c++ c++11

Best strategy for manual memory management using smart pointers?

c++ c++11

std::atomic library dependency (gcc 4.7.3)

c++ gcc c++11 shared-libraries

C++11 pass std::unique_lock<std::mutex> to lambda

Why weak pointer is getting created with shared_ptr?

Function overloading resolution with weak_ptr as argument

Nested map bracket initialization fails to compile

c++ c++11 dictionary

Variadic template constructor selection fails when argument is a reference

Access class variable from std::thread

c++ multithreading c++11

How to expand parameter pack of base classes and call member function of each one?

Should I move a callee's return value if I'm going to construct an object with it?