Working on switching to std::string.

This commit is contained in:
Ben Vanik
2014-08-16 02:30:23 -07:00
parent 01f0b14250
commit a4dfc23abc
34 changed files with 211 additions and 250 deletions

View File

@@ -29,15 +29,15 @@ HostPathFile::~HostPathFile() {
CloseHandle(file_handle_);
}
const char* HostPathFile::path(void) const {
const std::string& HostPathFile::path() const {
return entry_->path();
}
const char* HostPathFile::absolute_path(void) const {
const std::string& HostPathFile::absolute_path() const {
return entry_->absolute_path();
}
const char* HostPathFile::name(void) const {
const std::string& HostPathFile::name() const {
return entry_->name();
}