Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Oct 16, 2024
1 parent f3ffdcf commit 3068487
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/node_file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3141,7 +3141,8 @@ std::wstring ConvertToWideString(const std::string& str) {
return wstrTo;
}

#define BufferValueToPath(str) std::filesystem::path(ConvertToWideString(str.ToString()))
#define BufferValueToPath(str) \
std::filesystem::path(ConvertToWideString(str.ToString()))

std::string ConvertWideToUTF8(const std::wstring& wstr) {
if (wstr.empty()) return std::string();
Expand Down

0 comments on commit 3068487

Please sign in to comment.