Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Variable cannot be implicitly captured in a lambda with no capture-default specified

c++ macos c++11 g++ c++14

C++11 std::cout << "string literal in UTF-8" to Windows cmd console? (Visual Studio 2015)

Disable dynamic binding (virtual table creation) in c++ for virtual functions

c++ performance c++11 vtable

Why would an Alias Template be treated differently than the aliased type template when it comes to friendship?

c++ templates c++11 friend

c++11 variadic args with function default argument value

c++11 variadic-templates

Why reference_wrapper behaves differently for built-in types?

Compose callable object

c++ c++11

Compiler/JIT optimisation of bounds check of for loop in Java and C++

Compile-time literal string as template argument

std::shared_ptr preallocation memory

Wrapping c++ and CUDA code with cython

python c++11 cuda cython

Is it possible to implement boost::thread_specific_ptr via thread_local?

Qmake doesn't use stdc++11 compilation flag

c++ qt c++11

Iterator-reducer pattern for functions that may or may not return a value

c++ c++11

Why constexpr is not evaluated at compile time (MSVC 2015)?

Why don't std::initializer_list overloads exist for std::make_unique et al?

Mixing inherited constructor from the base class with a custom construcutor

c++ templates c++11

How to create a private static const string when using the pimpl idiom

c++ c++11 pimpl-idiom

Partial template function specialization with enable_if: make default implementation

c++ c++11 sfinae enable-if

How to construct an std::array with index sequence?

c++ arrays c++11 templates c++14