Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Idiomatic way to create a vector of pointers in C++11?

c++ pointers c++11 vector

Performance issue with parser written with Boost::spirit

g++ compiler giving << type errors for expressions, but works in Visual Studio

Is nullptr not a special keyword and an object of std::nullptr_t? [duplicate]

c++ pointers c++11 nullptr

Does sending a character pointer - initialized to '\0' - to the standard output fault it? (C++)

c++ c++11

Is C++ still considered as a statically typed language? [duplicate]

c++ c++11

Erratic behavior of GCC's std::sort with lambdas

c++ c++11 gcc lambda stl

Why old usage (c++03) of auto does not compile under C++11?

c++ c++11 auto c++03

Trivial raw pointer that self-initializes to nullptr in C++

c++ pointers c++11 unique-ptr

Is there a way to workaround a #define introduced by a vendor?

c++ c c++11

std::array error: Has no member named 'assign'

c++ c++11 assign g++4.8 stdarray

Remove smallest non-unique value from vector

c++ algorithm c++11 unique

for each in GCC and GCC version

c++ gcc foreach c++11

Decreasing verbosity: inserting elements into map

Is it possible to micro-optimize "x = max(a,b); y = min(a,b);"?

C++ STL unordered_map problems and doubts

c++ stl hashmap c++11

When should I use static data members vs. const global variables?