From 7860e927a771d6a07d9b1905071bd389a0e64001 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Mon, 10 Feb 2020 15:10:27 -0500 Subject: removed dead insertFile() avoided a few string copies lowercase filename in thread --- src/envfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/envfs.h') 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 -- cgit v1.3.1