Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Ensuring that only one instance of a function is running?

Declaration works with auto but not by explicitly declaring the type? [duplicate]

c++ c++11

Were all implementations of std::vector non-portable before std::launder?

What is the best way to keep a pointer to different types when only one of them is needed at a time?

Qt/C++: What's the best way to call a method asynchronously in Qt event loop without having to write its name as string?

c++ qt c++11 asynchronous qt5

Lambdas don't appear to work within ref classes in VS2010

lambda c++-cli c++11

rvalues and temporary objects in the FCD

c++ c++11 temporary rvalue

How can I compile GCC on a mac so compiled executables will work on earlier versions of OS X?

macos c++11 gcc osx-tiger

Passing a boost::unordered_set as the result map to boost::split

How can I access the types of a lambda in c++0x?

How to achieve "optimal" operator overload-resolution in arithmetic expressions with rvalues?

Guarantees on memory ordering and proper programming practice

Pack expansion failure with g++ 4.9.0, but works with clang++ 3.4

In g++ is C++ 11 thread model using pthreads in the background?

c++ c++11 g++ pthreads

Is it possible to force STL set to reevaluate predicate?

c++ c++11 stdset

Standard library containers producing a lot of copies on rvalues in GCC

Why doesn't std::remove_const remove const qualifier?

std::vector : cannot bind 'std::ostream {aka std::basic_ostream<char>}' lvalue to 'std::basic_ostream<char>&&'

c++ gcc c++11 stl iostream

Clang and GCC vs MSVC and ICC: Is a static_assert in the copy/move constructor required to work, if copy/move elision could apply too?

Overloads of std::minmax() and std::tie

c++ c++11