diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-25 00:43:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-25 00:43:55 +0100 |
| commit | acf965b01086899028aad143e2733bffef79e33e (patch) | |
| tree | d29193160f08170c26a32c072a8c33a25cacc1bc /src/lib | |
| parent | cb8d293cffc078ab49663725f9950a73f121bfe0 (diff) | |
Missing namespace qualifier.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/film.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 3620cdff7..5493f6306 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -714,7 +714,7 @@ Film::content_type () const #if BOOST_FILESYSTEM_VERSION == 3 string ext = boost::filesystem::path(_content).extension().string(); #else - string ext = filesystem::path(_content).extension(); + string ext = boost::filesystem::path(_content).extension(); #endif transform (ext.begin(), ext.end(), ext.begin(), ::tolower); |
