Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How to declare a member in a base template class where the type is dependent of the derived class?

template specialization for std::atomic<double> &

Is std::future::wait a memory barrier? (I can not explain this data race)

c++ multithreading c++11

Passing member function pointer as template parameter

c++ c++11 templates

C++ API design: is using void* a bad idea?

c++ c++11 api-design

Purpose of having std:less (or similar function) while it just call < operator

c++ c++11

Which is faster for IPC sharing of objects -ZeroMQ or Boost::interprocess?

Destroying condition_variable while waiting

c++ multithreading c++11

Callback using lambda with closures

Transform parameter pack types

c++ c++11 templates c++17

How to specify -std=c++11 option in bazel BUILD file?

c++ c++11 target bazel

gcc warning "does not declare anything

c++ c++11 gcc

What goes wrong when passing a std::sub_match as argument to a std::thread?

c++ multithreading c++11

How to use std::unique_ptr on a struct?

c++ c++11 struct unique-ptr

propagate_const of const unique_ptr

c++ c++11 c++17 unique-ptr

What do curly braces after a struct variable member mean?

c++ c++11 initialization

Using a C++17 library against a C++11 application

Why in some cases can I call a member function without an object?

c++ c++11

How to simulate std::array<15,int &> with tuples [duplicate]

Why isn't the cout overflow in this situation?

c++ c++11