Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob authored and Jacob committed Nov 8, 2023
1 parent a797e6d commit d05d5d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions include/ioh/common/file.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@

#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>

#ifndef _MSC_VER
#include <unistd.h>
#endif

#include <condition_variable>
#include <fstream>
#include <mutex>
Expand Down Expand Up @@ -644,7 +647,7 @@ namespace ioh::common::file
}
};
#else
typename DirectIOWriter = CachedFWriter;
using DirectIOWriter = CachedFWriter;
#endif


Expand Down

0 comments on commit d05d5d4

Please sign in to comment.