Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions client_generic/Client/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

#include "boost/filesystem/path.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/convenience.hpp"
#include "boost/filesystem.hpp"

#if defined(MAC) || defined(WIN32)
#define HONOR_VBL_SYNC
Expand All @@ -69,7 +69,6 @@
using boost::filesystem::path;
using boost::filesystem::exists;
using boost::filesystem::directory_iterator;
using boost::filesystem::extension;

using namespace DisplayOutput;

Expand Down
3 changes: 1 addition & 2 deletions client_generic/Client/lua_playlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@

#include "boost/filesystem/path.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/convenience.hpp"
#include "boost/filesystem.hpp"
#include <boost/thread.hpp>

using boost::filesystem::path;
using boost::filesystem::exists;
using boost::filesystem::directory_iterator;
using boost::filesystem::extension;


// Lua.
Expand Down
3 changes: 1 addition & 2 deletions client_generic/ContentDecoder/graph_playlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@

#include "boost/filesystem/path.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/convenience.hpp"
#include "boost/filesystem.hpp"

using boost::filesystem::path;
using boost::filesystem::exists;
using boost::filesystem::no_check;
using boost::filesystem::directory_iterator;
using boost::filesystem::extension;

namespace ContentDecoder
{
Expand Down
3 changes: 1 addition & 2 deletions client_generic/TupleStorage/luastorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@

#include "boost/filesystem/path.hpp"
#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/convenience.hpp"
#include "boost/filesystem.hpp"

using boost::filesystem::path;
using boost::filesystem::exists;
using boost::filesystem::directory_iterator;
using boost::filesystem::extension;

using namespace std;

Expand Down