summarylogtreecommitdiffstats
path: root/612-boost-vs-std.patch
blob: 9c23c669bdc892339544c719e56bc711fbeed24c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/trunk-recorder/systems/system.h b/trunk-recorder/systems/system.h
index a721f38..bb9d044 100644
--- a/trunk-recorder/systems/system.h
+++ b/trunk-recorder/systems/system.h
@@ -35,8 +35,8 @@ class dmr_recorder;
   typedef boost::shared_ptr<dmr_recorder> dmr_recorder_sptr;
 	#else
   typedef std::shared_ptr<analog_recorder> analog_recorder_sptr;
-  typedef boost::shared_ptr<p25_recorder> p25_recorder_sptr;
-  typedef boost::shared_ptr<dmr_recorder> dmr_recorder_sptr;
+  typedef std::shared_ptr<p25_recorder> p25_recorder_sptr;
+  typedef std::shared_ptr<dmr_recorder> dmr_recorder_sptr;
 	#endif
 
 class System {