Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

Return a unique_ptr by reference

c++ c++11

why c++ use memset(addr,0,sizeof(T)) to construct a object? Standard or compiler bug?

Why is it necessary to to use set.find(x) != set.end() while finding an element.

c++ c++11 stl c++14

g++ compiler error on deleted assignment operator of pair<string,string>

c++11 stl

Safely compare integer to strongly typed enum

c++ c++11

is std::function heavier than auto storing lambda function

To get disassembly of an overloaded member function in GDB - C++

c++ c++11 gdb c++14

Usefulness of volatile in concurrent programming since C++11

c++ c++11 concurrency volatile

Inserting multiple not-a-numbers into a std::unordered_set<double>

c++ c++11 ieee-754

Terminate thread c++11 blocked on read

c++ c++11

friend function defined inside a template class

c++ c++11

Can I resize a vector that was moved from?

Prevent const function being called for non-const object

c++ c++11

Range-based for and other increments

c++ c++11 for-loop

std::unordered_map constructor with initializer_list and size compiles in main, but not in class definition

How to compare two preprocessor macros with the same name?

push_back is more efficient than emplace_back?

c++ c++11 vector

Is it guaranteed that std::chrono::steady_clock never wraps around?

c++ c++11 chrono

Why does default-constructibility behave weirdly for inner structs with NSDMI?

How to call a template member function in a template base class?