Missing namespace qualifier.
authorCarl Hetherington <cth@carlh.net>
Wed, 24 Oct 2012 23:43:55 +0000 (00:43 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 24 Oct 2012 23:43:55 +0000 (00:43 +0100)
src/lib/film.cc

index 3620cdff7c82cc22a8e2dd3376b702b62c293c4c..5493f6306bbe8c71e323c9c772f44a3a111ccd88 100644 (file)
@@ -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);