Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Why not call nullptr NULL?

c++ c++11 language-design

When is it necessary to use the flag -stdlib=libstdc++?

c++ gcc c++11 std libstdc++

Concurrency: Atomic and volatile in C++11 memory model

How to update GCC in MinGW on Windows?

c++ gcc c++11 mingw

Strange code that compiles with g++

c++ gcc c++11 g++

Does moving a vector invalidate iterators?

c++ iterator c++11

Why doesn't emplace_back() use uniform initialization?

What is the performance penalty of C++11 thread_local variables in GCC 4.8?

Clang doesn't see basic headers

Get Apple clang version and corresponding upstream LLVM version

C++11 initializer list fails - but only on lists of length 2

c++ c++11 initializer-list

What's the difference between std::advance and std::next?

c++ c++11 std

Split a string using C++11

c++ string split c++11

How to implement multithread safe singleton in C++11 without using <mutex>

std::fstream buffering vs manual buffering (why 10x gain with manual buffering)?

c++ file c++11 buffer fstream

Convert a vector<T> to initializer_list<T>

c++ c++11 stl initializer-list

Is string::c_str() no longer null terminated in C++11?

c++ string c++11

What do each memory_order mean?

How to iterate through a list of objects in C++?

c++ for-loop c++11 stl iterator

When to use std::async vs std::threads?