Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / data / signalbase.cpp
index beefa5168a32befb421de14f36e7ef69a08a33c7..06b3e1d866b671b397bb396d95f1c714b6b340f6 100644 (file)
@@ -15,8 +15,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "analog.hpp"
@@ -140,12 +139,12 @@ bool SignalBase::is_decode_signal() const
        return (decoder_stack_ != nullptr);
 }
 
-std::shared_ptr<pv::data::DecoderStack> SignalBase::decoder_stack() const
+shared_ptr<pv::data::DecoderStack> SignalBase::decoder_stack() const
 {
        return decoder_stack_;
 }
 
-void SignalBase::set_decoder_stack(std::shared_ptr<pv::data::DecoderStack>
+void SignalBase::set_decoder_stack(shared_ptr<pv::data::DecoderStack>
        decoder_stack)
 {
        decoder_stack_ = decoder_stack;