diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-04 10:37:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-04 10:37:32 +0100 |
| commit | 3429cf48ff2ce056413588be4151be82c8114861 (patch) | |
| tree | 3d4875a3acfdc29a1baab5779de221667130ee08 /src/lib/video_source.cc | |
| parent | 5efb969c83dce8fc94b2e7184e424578fee772d1 (diff) | |
Some unnecessary boost:: removal.
Diffstat (limited to 'src/lib/video_source.cc')
| -rw-r--r-- | src/lib/video_source.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_source.cc b/src/lib/video_source.cc index 8101a6d36..1c4d6466c 100644 --- a/src/lib/video_source.cc +++ b/src/lib/video_source.cc @@ -27,7 +27,7 @@ using boost::bind; static void process_video_proxy (weak_ptr<VideoSink> sink, shared_ptr<Image> i, bool same, shared_ptr<Subtitle> s) { - boost::shared_ptr<VideoSink> p = sink.lock (); + shared_ptr<VideoSink> p = sink.lock (); if (p) { p->process_video (i, same, s); } |
