Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to use clang++ with -std=c++11 -Weverything -Werror

Copy constructor is not inherited

Lookup table with constexpr

c++ c++11 constexpr

Comparison between constant accessors of private members

How to use std::is_volatile?

Most concise way to disable copying class in C++11

c++ c++11 destructor

Is volatile int in C as good as std::atomic<int> of C++0x?

c c++11 atomic volatile

Template class with conditional typenames

stl container with std::unique_ptr's vs boost::ptr_container

Which is faster, string.empty() or string.size() == 0?

c++ performance c++11 string

C++ std::vector of independent std::threads

Move all elements which satisfy some condition from one container to another, i.e. I'm looking for some kind of "move_if"

c++ c++11 c++14

How to initialize multiple variables in C++ to the same value?

c++ c++11

Why not to inherit from std::allocator

c++ inheritance c++11

Why am I getting the error 'A<int>' is not an accessible base of 'S<int>' for a base class's base class?

c++ templates c++11

Locale specific behavior in the regex library?

c++ regex c++11 locale

unique_ptr VS auto_ptr [duplicate]

c++ c++11 smart-pointers

Passing by constant reference in the lambda capture list

c++ c++11 lambda

Type id of std::string for variable vs. string in argument?

Forwarding all constructors in C++0x