]> sigrok.org Git - pulseview.git/blobdiff - pv/popups/channels.cpp
Prefer std::make_shared().
[pulseview.git] / pv / popups / channels.cpp
index 89080c4fc45426fd5ccaf6b8d2abe8467be9ddad..9c200b9db31eb5d1c6a3e35cafcc85b1ec2cdbbf 100644 (file)
@@ -51,6 +51,7 @@ using std::map;
 using std::mutex;
 using std::set;
 using std::shared_ptr;
 using std::mutex;
 using std::set;
 using std::shared_ptr;
+using std::make_shared;
 using std::unordered_set;
 using std::vector;
 
 using std::unordered_set;
 using std::vector;
 
@@ -165,7 +166,7 @@ void Channels::populate_group(shared_ptr<ChannelGroup> group,
        // popup.
        shared_ptr<Device> binding;
        if (group)
        // popup.
        shared_ptr<Device> binding;
        if (group)
-               binding = shared_ptr<Device>(new Device(group));
+               binding = make_shared<Device>(group);
 
        // Create a title if the group is going to have any content
        if ((!sigs.empty() || (binding && !binding->properties().empty())) &&
 
        // Create a title if the group is going to have any content
        if ((!sigs.empty() || (binding && !binding->properties().empty())) &&