summarylogtreecommitdiffstats
path: root/612-boost-vs-std.patch
diff options
context:
space:
mode:
Diffstat (limited to '612-boost-vs-std.patch')
-rw-r--r--612-boost-vs-std.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/612-boost-vs-std.patch b/612-boost-vs-std.patch
deleted file mode 100644
index 9c23c669bdc8..000000000000
--- a/612-boost-vs-std.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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 {