diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-10 15:10:27 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-18 17:25:03 -0500 |
| commit | 7860e927a771d6a07d9b1905071bd389a0e64001 (patch) | |
| tree | 0b24d49f9b324cda356103f80ca4df8246c82b62 /src/envfs.h | |
| parent | 3423b0a59337cf4cf99a24a1421ea33c4c641a22 (diff) | |
removed dead insertFile()
avoided a few string copies
lowercase filename in thread
Diffstat (limited to 'src/envfs.h')
| -rw-r--r-- | src/envfs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/envfs.h b/src/envfs.h index 1fc53bcf..6cc98775 100644 --- a/src/envfs.h +++ b/src/envfs.h @@ -9,7 +9,8 @@ namespace env struct File { std::wstring name; - FILETIME ft; + std::wstring lcname; + FILETIME lastModified; }; struct Directory |
