Skip to content

Commit

Permalink
fix compile error on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
matyalatte committed Nov 2, 2024
1 parent 2af3766 commit f2ae818
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/string_utils.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
#include "string_utils.h"

#include "inttypes.h"
#include <cstring>
#include <cstdio>
#include <inttypes.h>
#include <wchar.h>

#ifdef _WIN32
#include "windows/uipriv_windows.hpp"
#else
#include <cstring>
#endif

void tuwString::alloc_cstr(const char *str, size_t size) {
Expand Down

0 comments on commit f2ae818

Please sign in to comment.