diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-23 11:52:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-23 11:52:29 +0100 |
| commit | a02fbffd265d1434e4ef451aad8c4e95264f41e5 (patch) | |
| tree | 0419d17f0add5fe29427a2719316e700a99d0ab2 /src/lib | |
| parent | fe56f4e0ac26fbe1bea8d7b07f61dcc26cc26984 (diff) | |
White space tweaks.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dcp_content.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index b5c1e647c..70914b39c 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -130,10 +130,10 @@ void DCPContent::read_directory (boost::filesystem::path p) { for (boost::filesystem::directory_iterator i(p); i != boost::filesystem::directory_iterator(); ++i) { - if (boost::filesystem::is_regular_file (i->path ())) { - _paths.push_back (i->path ()); + if (boost::filesystem::is_regular_file (i->path())) { + _paths.push_back (i->path()); } else if (boost::filesystem::is_directory (i->path ())) { - read_directory (i->path ()); + read_directory (i->path()); } } } @@ -326,7 +326,7 @@ DCPContent::needs_assets () const vector<boost::filesystem::path> DCPContent::directories () const { - return dcp::DCP::directories_from_files (paths ()); + return dcp::DCP::directories_from_files (paths()); } void |
