Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Static const template member initialization fails with MSVC

c++ visual-c++ c++11

boost variant busted in 1_54?

c++ boost c++11 variant

Checking Q_OBJECT macro with static_assert

Changing VTBL of existing object "on the fly", dynamic subclassing

c++ c++11 new-operator

Global function is slower than functor or lambda when passed to std::sort

How does the 'auto' keyword know when to use a const_iterator matching function overloads?

Move of class with pimpl won't compile

Compiler hang when initializing large std::arrays

c++ arrays c++11

What is the raw_storage_iterator component uses/advantages in C++

non-constexpr calls in constexpr functions

c++ c++11 constexpr c++14

Can explicitly defaulted / deleted functions overload on ref qualifiers?

c++ c++11

boost::thread and std::thread compatibility issues?

c++ multithreading c++11 boost

How to overload a template function depending on argument's call operator args or existence?

Templated Function that works for iterators over raw pointers as well as iterators over unique_ptrs

Acquire/release semantics on atomic variables accessed via []-operator

c++ arrays c++11 shared-memory

Casting a section of a std::vector<char> to std::array<char, n>, c++11

c++ c++11

Can you forget about Checked-Delete when using C++11 smart pointers?

Preserving the implicitness of construction in a policy-based class

Compile-time template `std::integral_constant` counter - how to implement it?

Program runs in Visual Studio 2012 but not ideone.com