Removing unneeded fs entry type.

This commit is contained in:
Ben Vanik
2015-02-09 16:59:28 -08:00
parent 78451a4e9e
commit cc6d03ab2c
13 changed files with 18 additions and 38 deletions

View File

@@ -25,9 +25,9 @@ class HostPathMemoryMapping : public MemoryMapping {
std::unique_ptr<poly::MappedMemory> mmap_;
};
HostPathEntry::HostPathEntry(Type type, Device* device, const char* path,
HostPathEntry::HostPathEntry(Device* device, const char* path,
const std::wstring& local_path)
: Entry(type, device, path),
: Entry(device, path),
local_path_(local_path),
find_file_(INVALID_HANDLE_VALUE) {}