Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Initializing an array with a constexpr?

c++ arrays c++11 constexpr

C++11 <thread> multithreads rendering with OpenGL prevents main thread reads stdin

Intel C++ Compiler is extremely slow to compile recursive decltype returns

template template syntax problems with variadic templates

sizeof of two template types, when both are derived from one base

c++ c++11

Non-static member initializer from another non-static

c++ gcc c++11 clang icc

A BIG bug of VC++? Why does initializer-list not value-initialize a struct?

Is there a way to specialize a function between compile time and run time?

c++ c++11 constexpr

Do C++ conditional statements carry a dependency from the condition expression to the statement?

c++ c++11 memory-model

C++11 class lattice with mixed virtual and non-virtual bases?

c++ c++11

Equivalent of `using` aliases for `template`s

c++ templates c++11 c++14 using

questions regarding the design of std::initializer_list

c++ c++11

Returning std::move(f) in std::for_each

regex_token_iterator *it++ bug?

c++ regex c++11

Standard method for determining the arity and other traits of std::bind() result?

Why is std::chrono::system_clock::to_time_t() not constexpr?

c++ c++11 constexpr chrono

What to use as replacement for concepts (upcoming feature) in C++?

c++ c++11 c++-concepts

How does this extra thread make it faster than unthreaded?

c++ multithreading c++11

Compiler error using std::shared_ptr with std::thread

c++ c++11

Could this templated syntax be improved?

c++ templates c++11 methods