Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

unable to get key_type from a map

c++ c++11

Why is there a sizeof... operator in C++0x?

c++ language-design c++11

std::transform and move semantics

c++ stl c++11

Can I use libcurls CURLOPT_WRITEFUNCTION with a C++11 lambda expression?

c++ lambda c++11 libcurl

Can I pass value of forward declared enum?

using one random engine for multi distributions in c++11

c++ c++11 random

Casting shared_ptr<T> to shared_ptr<void>

c++ casting c++11 shared-ptr

Is this correct way to combine std::generate_n and std::back_inserter?

c++ stl c++11

Linker error when using unique_ptr in C++/CLI

C++ stl unordered_map, thread safety where each thread accesses only it's own assigned key and may edit that value

Pure functions in C++11

c++ gcc c++11

empty brace-init-lists emit warnings about missing field initializers

c++ c++11

How do I get the new C++ threading support on Mac OS X with clang?

c++ macos c++11 clang

Is it possible to erase elements of a std::list in a c++11 for each loop

c++ stl c++11

constexpr string literals in anonymous namespace?

c++ c++11 constexpr

template enable if is pointer

c++ templates c++11 std

prevent std::atomic from overflowing

c++ c++11 atomic

-Wsign-compare warning in g++

c++ c++11 g++

Can you replace & with bitand in references?

c++ syntax c++11

Generic template for calling function with vector elements

c++ templates c++11