Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

C++11: How can I join a std::thread as soon as its execution function exits?

c++ multithreading c++11

Class member function defined outside its namespace

My tree-node has a missing link

c++ c++11

Synchronizing access to data using a "got there first" flag, instead of a lock/mutex

Function returning its argument or checking for nullptr

c++ c++11 c++14 c++17

How to properly declare a generic sorting algorithm?

c++ templates c++11

Compiler added optimization causes different behavior for "final" methods [closed]

c++ optimization c++11 final

Do atomics in C++11 prevent compiler to re-read from shared variables?

c++ c++11 atomic memory-model

What is the minimum size of a boolean?

c++ c++11 boolean sizeof

How to use std::lock_guard on a class member mutex

c++ c++11 mutex

Forbid code to compile if some function is not called

Unrelated deleted operator changes behaviour of overload resolution

Do C++ standard library algorithms use std::advance

cannot convert parameter 1 from 'const boost::shared_mutex' to 'const boost::shared_lock<Mutex> &'

Remove whitespace from string excluding parts between pairs of " and ' C++

std::strcpy not declared in this scope DESPITE #include <cstring>

c++ c++11 gcc

C++11: What prevents stores from lifting past the start of a lock's critical section?

Template C++0x lambda function... or functor/predicate?

c++ templates c++11 lambda

A C++ "in" operator without cruft?

c++ c++11