summaryrefslogtreecommitdiff
path: root/src/lib/video_source.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-04 10:37:32 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-04 10:37:32 +0100
commit3429cf48ff2ce056413588be4151be82c8114861 (patch)
tree3d4875a3acfdc29a1baab5779de221667130ee08 /src/lib/video_source.cc
parent5efb969c83dce8fc94b2e7184e424578fee772d1 (diff)
Some unnecessary boost:: removal.
Diffstat (limited to 'src/lib/video_source.cc')
-rw-r--r--src/lib/video_source.cc2
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);
}