Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / signal.cpp
index 0ee89a1f23a403df763ae56a33319fb07fc439a7..065715aa7a996fd0c01f7aaf3763788a95f0658e 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <extdef.h>
 
-#include <assert.h>
+#include <cassert>
 #include <cmath>
 
 #include <QApplication>
@@ -60,7 +60,7 @@ const char *const ChannelNames[] = {
 };
 
 Signal::Signal(pv::Session &session,
-       std::shared_ptr<data::SignalBase> channel) :
+       shared_ptr<data::SignalBase> channel) :
        Trace(channel),
        session_(session),
        scale_handle_(make_shared<SignalScaleHandle>(*this)),