CodePudding
Home
front end
Back-end
Net
Software design
Enterprise
Blockchain
Mobile
Software engineering
database
OS
other
Tags
>
unique-ptr
09-09
Software design
boost::asio::io_service::post - how to move std::unique_ptr into a handler function
09-07
Software design
How do I assign an arbitrary value to a unique_ptr?
09-01
Net
No matching default constructor for static unique_ptr
08-18
Back-end
Should you use std::unique_ptr alongside std::function?
08-15
Net
How to pass raw pointer of unique_ptr to a function that takes in unique_ptr?
08-15
Software design
Why does the pointer exist even after the unique_ptr to which the pointer is assigned goes out of sc
08-11
Back-end
dllexport a type with a std container of std::unique_ptr results in error C2280
08-09
front end
error: conversion from ‘unique_ptr<GreenStack,default_delete<GreenStack>>’ to non-scalar
08-08
Back-end
std::move between unique_ptr and another that it owns
08-06
Back-end
How to move a unique_ptr without custom deleter to another unique_ptr with custom deleter?
08-06
Back-end
Cannot convert unique_ptr<derived> to unique_ptr<base>
08-06
Back-end
How to Initialize a Map of Unique pointer Objects sorted by a Object Variable
07-01
Software engineering
Move an object containing a unique_ptr to vector
06-30
Software engineering
std::unique_ptr custom deleter that takes two arguments
06-29
Back-end
C reinitializing variables in a while loop
06-22
front end
Using an unique_ptr as a member of a struct
06-13
Software engineering
Strange behavior between `std::make_unique` and `std::unique_ptr` with forward declaration
06-12
Enterprise
Create a `map` using `unique_ptr`
06-01
Blockchain
vector<unique_ptr<Base> > using initialization list of Derived
05-25
Blockchain
How can I retrieve the return value of pclose when the unique_ptr is destroyed?
05-20
Enterprise
How to construct unique_ptr<T[],D>(specialization for arrays)?
05-19
Mobile
Creating list of unique_ptr using initialization list and make_unique fails in GCC 5.4
05-19
Net
What is the use of a custom unique_ptr deleter that call delete?
05-08
OS
Proper syntax for defining a unique_ptr array of class objects with a constructor
05-06
Net
Unique_ptr in a class
05-05
Enterprise
why the raw pointer get by std::unique_ptr's get() can not delete the object and how is that im
04-29
database
Boost ASIO "Bad address" error when passing unique_ptr to completion handler
04-11
Software engineering
incomplete types with shared_ptr and unique_ptr
04-02
Mobile
error with vector, unique_ptr, and push_back
03-17
Back-end
trying to insert a vector to an unordered_map but get "message : see reference to class templat
03-13
database
Why my unique_ptr realized by myself does not provide a call operator?
03-13
Software design
How to improve my custom unique_ptr class? I want to realize that derived class can cast to base cla
03-10
Software design
Question about returning an unique_ptr from a function
03-09
Blockchain
Smart pointer declared const
03-04
Software design
vector<unique_ptr<T>> takes more than three times as much memory as vector<T> in u
02-20
Software design
Why is compiler giving error while using make_unique with array?
02-20
Software engineering
Is it mandatory for destructor to use delete when managed via unique pointer?
02-12
Back-end
Copying an object with a polymorphic member in C
02-11
Software engineering
Returning an std::pair<std::shared_ptr<A>, std::unique_ptr<B>&> from a function re
12-24
Mobile
Transfer ownership of a derived class unique_ptr to its abstract base class unique_ptr
69
1
2
Next
Last
Links:
CodePudding