From d733dd572856677fab530dc930ab45ac29bf861b Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Wed, 17 Feb 2016 11:57:04 -0800 Subject: [PATCH] [build] Fix env_win.cc compiler errors Summary: I broke it in D53781. Test Plan: tried the same code in util/env_posix.cc and it compiled successfully Reviewers: sdong Reviewed By: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D54303 --- port/win/env_win.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/port/win/env_win.cc b/port/win/env_win.cc index cf548e9be..b125e1dce 100644 --- a/port/win/env_win.cc +++ b/port/win/env_win.cc @@ -1415,8 +1415,8 @@ class WinEnv : public Env { return status; } - virtual Status Env::GetChildrenFileMetadata( - const std::string& dir, std::vector* result) override { + virtual Status GetChildrenFileAttributes( + const std::string& dir, std::vector* result) override { return Status::NotSupported("Not supported in WinEnv"); }