Code cleanup: moving poly/ into xenia/base/

This commit is contained in:
Ben Vanik
2015-05-02 03:42:51 -07:00
parent 99816056be
commit e3220f7ae6
223 changed files with 1758 additions and 1881 deletions

View File

@@ -9,7 +9,7 @@
#include "xenia/kernel/fs/entry.h"
#include "poly/string.h"
#include "xenia/base/string.h"
#include "xenia/kernel/fs/device.h"
namespace xe {
@@ -25,7 +25,7 @@ Entry::Entry(Device* device, const std::string& path)
: device_(device), path_(path) {
assert_not_null(device);
absolute_path_ = device->path() + path;
name_ = poly::find_name_from_path(path);
name_ = xe::find_name_from_path(path);
}
Entry::~Entry() = default;