Skip to content

Commit

Permalink
[util] Fix Windows build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Sep 6, 2022
1 parent 7d12eed commit dd99d9a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions util/ots-validator-checker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,13 @@ int OpenAndLoadChars(
#else
// Windows
// TODO(yusukes): Support Windows.
int OpenAndLoadChars(
const char *file_name, uint8_t *trans_font, size_t trans_len) {
(void) file_name;
(void) trans_font;
(void) trans_len;
return 0;
}
#endif // _MSC_VER

} // namespace
Expand Down

0 comments on commit dd99d9a

Please sign in to comment.