From 29a6f18f6704af9d441e51ef49d81c0f584f39fc Mon Sep 17 00:00:00 2001 From: Jeremy Braun Date: Thu, 29 Aug 2024 09:19:10 -0700 Subject: [PATCH] allow `asyncdiskfile:` on windows+clang (#159) Summary: Pull Request resolved: https://github.com/facebookresearch/vrs/pull/159 Clang seems to compile this okay, enable this functionality Reviewed By: georges-berenger Differential Revision: D61921432 --- vrs/DiskFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrs/DiskFile.h b/vrs/DiskFile.h index ff1820fe..14cd79eb 100644 --- a/vrs/DiskFile.h +++ b/vrs/DiskFile.h @@ -172,7 +172,7 @@ class DiskFileT : public WriteFileHandler { using DiskFile = DiskFileT; -#if (IS_LINUX_PLATFORM() && IS_X86_PLATFORM()) || (IS_WINDOWS_PLATFORM() && !defined(__clang__)) +#if (IS_LINUX_PLATFORM() && IS_X86_PLATFORM()) || (IS_WINDOWS_PLATFORM()) #define VRS_ASYNC_DISKFILE_SUPPORTED() true class AsyncDiskFileChunk;