Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackarain committed Nov 14, 2023
1 parent 17e0f19 commit ebf7c07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions httpd/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ using awaitable_void = net::awaitable<void, executor_type>;

//////////////////////////////////////////////////////////////////////////

fs::path addLongPathAware(const fs::path& p)
inline fs::path addLongPathAware(const fs::path& p)
{
auto w = p.wstring();
#ifdef _WIN32
Expand All @@ -103,7 +103,7 @@ fs::path addLongPathAware(const fs::path& p)
return fs::path{ w };
}

fs::path removeLongPathAware(const fs::path& p)
inline fs::path removeLongPathAware(const fs::path& p)
{
auto w = p.wstring();
#ifdef _WIN32
Expand Down Expand Up @@ -222,7 +222,7 @@ inline ranges get_ranges(std::string range)
return result;
}

awaitable_void read_from_stdin()
inline awaitable_void read_from_stdin()
{
auto ex = co_await net::this_coro::executor;

Expand Down

0 comments on commit ebf7c07

Please sign in to comment.