boost compatibility fix; added a missing include

actorid
Marc Zinnschlag 13 years ago
parent c259b25fcf
commit 69127fa8f1

@ -44,13 +44,13 @@ namespace Files
{
if( !acceptableExtensions.empty() )
{
fileExtension = listIter->extension().string();
fileExtension = boost::filesystem::path (listIter->extension()).string();
boost::algorithm::to_lower(fileExtension);
if(!containsVectorString(acceptableExtensions, fileExtension))
continue;
}
type = listIter->parent_path().leaf().string();
type = boost::filesystem::path (listIter->parent_path().leaf()).string();
if (!strict)
boost::algorithm::to_lower(type);

@ -1,4 +1,7 @@
#include "fileops.hpp"
#include <iostream>
#include <boost/filesystem.hpp>
#include <boost/algorithm/string.hpp>

Loading…
Cancel
Save