Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Compile C++11 code on mac?

c++ c++11

NULL == pointer [duplicate]

c++ c++11

How do I create a vector of object values from a vector of object pointers?

c++ c++11

C++11 thread error runtime

c++ multithreading c++11

narrowing conversion from int to long unsigned int {} is ill-formed in C++11

c++ c c++11 gcc-warning gcc4.8

What does " for (const auto &s : strs) {} " mean?

c++ c++11 for-loop stl range

Is the order for variadic template pack expansion defined in the standard?

Boolean value returned on a function call to null object

c++ c++11

How to neatly initialize struct tm from ctime

c++ c++11 ctime

Why STL unordered_map and unordered_set cannot be sorted by STL algorithms?

C++11 future.wait_for() always returns future_status::timeout

c++ c++11 future compiler-bug

condition_variable throwing system_error with Xcode - fine with VStudio

c++ multithreading c++11

Does/would c++11/14 support something like vector<auto>

c++11 c++14

Why isn't a lambda that captures variables by reference convertible to a function pointer?

Variadic helper function with partial argument pack

Is it safe to use the Structure dereference(->) operator on the result of std::atomic::load

c++ c++11 atomic stdatomic

Is it safe to compare to pointer of std::vector to check equality?

c++ pointers c++11 vector

Advantages of forwarding references as functor arguments

c++ c++11

Random output different between implementations

c++ c++11 random

Why fork() use the same variable but different value?

c++ c++11 fork