Skip to content

Commit

Permalink
mv func pos
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroModel committed Dec 10, 2024
1 parent 4543ee9 commit 64a2fb4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/fast_io_hosted/platforms/win32.h
Original file line number Diff line number Diff line change
Expand Up @@ -920,15 +920,7 @@ namespace win32::details
{
using win32_9xa_dir_handle_path_str = ::fast_io::containers::basic_string<char8_t, ::fast_io::native_global_allocator>;
using tlc_win32_9xa_dir_handle_path_str = ::fast_io::containers::basic_string<char8_t, ::fast_io::native_thread_local_allocator>;
} // namespace win32::details

struct win32_9xa_dir_handle
{
win32::details::win32_9xa_dir_handle_path_str path;
};

namespace win32::details
{
template <typename... Args>
constexpr inline win32_9xa_dir_handle_path_str concat_win32_9xa_dir_handle_path_str(Args &&...args)
{
Expand Down Expand Up @@ -960,7 +952,15 @@ constexpr inline tlc_win32_9xa_dir_handle_path_str concat_tlc_win32_9xa_dir_hand
return {};
}
}
} // namespace win32::details

struct win32_9xa_dir_handle
{
win32::details::win32_9xa_dir_handle_path_str path;
};

namespace win32::details
{
inline void close_win32_9xa_dir_handle(win32_9xa_dir_handle &h) noexcept
{
h.path.clear();
Expand Down

0 comments on commit 64a2fb4

Please sign in to comment.