Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

std::mutex::lock() produces weird (and unnecessary) asm code

c++ c++11 gcc

Different behavior in C regex vs C++ regex using extended POSIX grammar

c++ c regex c++11 posix

Whats the difference between reference to an array and array as a parameters in functions?

Using an initializer_list on a map of vectors

c++ stl c++11

C++0x allocators

Using child class as a template parameter of a base class and as a nested name specifier

c++ templates c++11

Is what constitutes a failed initialization of block-scope static or thread storage duration variables underspecified?

std::function crashes when used in array on stack

Are there any unintuitive side-effects of member subobjects inheriting storage duration?

c++ c++11 language-lawyer

Why passing T from outer template as default argument to std::function causes compilation error?

No warning for narrowing when initializing with parentheses

c++ gcc c++11 g++

What type of random number engine to use with a specified random distribution?

c++ c++11 random

std::vector of std::functions find

c++ c++11

C+11 Associative Container that keeps insertion order?

c++ c++11 stl containers

Why is the copy assignment not deleted when the move assignment is declared?

std::bind to a std::function crashes with Clang

c++ xcode c++11 clang

graph/tree implementation with incomplete types

c++ c++11 stl

Obtaining a past-the-end pointer using the address of an array

Nested lambda expressions are very slow to compile and generate huge object file by Visual C++

Accessing the real underlying type of a getter?