Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Template aliases and dependent names

adapting a non-constexpr integral value to a non-type template parameter, and code bloat

"abc"[0] not a compile-time constant

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

Emulating explicit cast in C++03

c++ c++11 c++03

passing a static constexpr variable by universal reference?

G++ vs Clang : inconsistent behavior for constexpr and const

Is C++11's std::string's underlying representation guaranteed to have the terminating null character in place? [duplicate]

c++ string c++11

How do you determine the size of the nodes created by a 'std::map' for use with 'boost::pool_allocator' (in a cross-platform way)?

C++: Return type of std::tie with std::ignore

Using Boost.Spirit.Lex and stream iterators

c++ c++11 boost boost-spirit

Defining `swap` method for struct containing a union; how to do it?

c++ c++11 swap unions

C++11 Uniform Initialization Formatted Incorrectly by Eclipse

Is modifying a mutable on a const declared object undefined behavior?

std::map non-const functors, compile time error under clang++, ok for g++

c++ c++11 stl functor

Why std::string hasn't const char* cast operator in C++11?

c++ c++11 stl stdstring

Function template deduction and initlializer_list

std::is_convertible inconsistant with std::function

c++ gcc c++11 std

C++ Data Structure that would be best to hold a large list of names

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

Can array members be initialized self-referentially?

Have the ideas behind the Fast Delegate (et al) been used to optimize std::function?