diff options
author | Sven Wegener <sven.wegener@stealer.net> | 2014-06-30 09:38:31 +0200 |
---|---|---|
committer | Sven Wegener <sven.wegener@stealer.net> | 2014-06-30 09:38:31 +0200 |
commit | 79de83205964ee0182940ef7cec86b46896ed0e6 (patch) | |
tree | ccf532205a550ac926e52069649a1cc41aa555a6 /DSLogic-gui/pv/data/logic.cpp | |
parent | 3de7dbb24c71c0d894dbd734ddf9258683d9e2e1 (diff) |
Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
Diffstat (limited to 'DSLogic-gui/pv/data/logic.cpp')
-rw-r--r-- | DSLogic-gui/pv/data/logic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DSLogic-gui/pv/data/logic.cpp b/DSLogic-gui/pv/data/logic.cpp index 036cc54..4cdfe2a 100644 --- a/DSLogic-gui/pv/data/logic.cpp +++ b/DSLogic-gui/pv/data/logic.cpp @@ -37,12 +37,12 @@ Logic::Logic(unsigned int num_probes, uint64_t samplerate) : } void Logic::push_snapshot( - shared_ptr<LogicSnapshot> &snapshot) + boost::shared_ptr<LogicSnapshot> &snapshot) { _snapshots.push_front(snapshot); } -deque< shared_ptr<LogicSnapshot> >& Logic::get_snapshots() +deque< boost::shared_ptr<LogicSnapshot> >& Logic::get_snapshots() { return _snapshots; } |