Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++11

How can I resolve a "'shared_ptr' was not declared in this scope" error?

C++ Protocol Buffer: Temporary of non-literal type 'google::protobuf::internal::CallOnInitializedMutex <std::mutex>' in a constant expression

c++ c++11 protocol-buffers

Does resize on a std::vector<int> set the new elements to zero?

Overloading function calls for compile-time constants

c++ c++11

C++11 Initializing a std::string member

c++11

Ordered versus unordered containers in C++

c++ c++11 stl containers

Callbacks with different parameter types and storing the type

c++ c++11 dictionary

Valid situations for comparing shared_ptr instances

c++11 shared-ptr equality

How to cancel a Read() call for grpc::ClientReader in C++?

c++ c++11 grpc

Shall I clear a vector of unique_ptr in destructor in c++11 even if valgrind doesn't show memory leak

Can I avoid going through time_t to print a time_point?

c++ c++11 std c++-chrono time-t

Linker error for different declarations of default constructors

c++ c++11 c++14

Using memory_order_relaxed for storing with memory_order_acquire for loading

Initialize base class with data member from derived class [duplicate]

std::get_time on Visual 2015 does not fail on incorrect date

C++ return function lock_guard

c++ multithreading c++11

Can I just use memcpy for those std::is_trivially_move_* things?

c++ c++11 c++14 c++17

vector::push_back and std::move [duplicate]

c++ c++11 move rvalue

Implement hash for custom class C++

c++ c++11

When must you pass io_context to boost::asio::spawn? (C++)