Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Accessing the real underlying type of a getter?

Move Semantics C++11 (Bjarne Stroustrup book, pg75)

c++ c++11 vector

Converting std::exception_ptr to boost::exception_ptr

c++ boost c++11

How to handle parameter packs in the middle of a function signature?

How can I make my objects reinterpret-castable to arrays, like std::complex?

c++ c++11

How to remove const qualifier from a member function pointer

clang++ only compiles C++11 program using boost::format when -std=c++11 option is dropped

c++ gcc c++11 boost clang

Can a C++11 thread_local variable inherit its initial value from the parent thread?

c++ multithreading c++11

"Magic static" singleton crashing when referenced in static destruction phase of another translation unit

C++11 internal std::string representation (libstdc++)

c++ string c++11 internals

g++4.9 bug in allowing std::vector<C_type_array>

c++ c++11 stl gcc4.9

Is it legal to activate nested unions via the address of their members?

c++ c++11

Explicit template function specializations with overloads: Why would you do it?

c++ templates c++11

GCC's TSAN reports a data race with a thread safe static local

can the compiler feasibly calculate a DFA from a regular expression?

Initialization of static constexpr member array in gcc 4.8

Inline member initializer containing pointer to member

Creating a class in a DLL using std::string. C4251 warning

Boost type_erasure any with const member function

Is it legal for a standard library implementation to specialize a function templated on a concept with a child concept?