Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How do I save a lambda for later callback?

c++ lambda c++11

c++ analog for rust like synhronization

c++ c++11 boost

How to delete instance of persistent object when last client has finished

How to specialize assignment operator in template class?

c++ use derived class in std::shared_ptr<baseclass>

c++11 shared-ptr

Is there std::memset equivalent for std::array?

c++ c++11 memset stdarray

Template: How to select smallest int type which holds n bits?

c++ c++11 templates

Extract template type from initializer list

c++ templates c++11

Using placement new for a polymorphic unique_ptr

C++ - Return C++11 std::array

c++ arrays c++11 reference

Is post-incrementing the iterator during a container erase always a bug?

c++ c++11

Shared resource ownage using std::weak_ptr

C++ class follows with template keyword

c++ c++11

How to build NS-3 to use C++0x/C++11 libraries?

c++ gcc c++11 waf ns-3

A template class that only accepts enum type arguments?

c++ c++11

Refactoring to enum to enum class shadows namespace

c++ c++11

In C++, if "int a = 3; int* p = &a;", then why is "const int* &pp = p" not allowed, but "const int* const &pp = p" is allowed?

c++ c++11 reference constants

How can I detect string literals in code?

c++ regex c++11