Skip to content

Commit

Permalink
allow asyncdiskfile: on windows+clang (#159)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #159

Clang seems to compile this okay, enable this functionality

Reviewed By: georges-berenger

Differential Revision: D61921432
  • Loading branch information
Jeremy Braun authored and facebook-github-bot committed Aug 29, 2024
1 parent 40f0e4e commit 32c8c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vrs/DiskFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class DiskFileT : public WriteFileHandler {

using DiskFile = DiskFileT<DiskFileChunk>;

#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;
Expand Down

0 comments on commit 32c8c69

Please sign in to comment.