Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move const to end to satisfy both clang and g++
  • Loading branch information
beneschtech committed Aug 8, 2020
commit df24e2b8ab34264375cdf26d8d78f4dbd8c9a0ac
4 changes: 2 additions & 2 deletions src/httpserver/details/http_endpoint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ class http_endpoint
return chunk_positions;
}

const bool is_family_url()
bool is_family_url() const
{
return family_url;
}

const bool is_regex_compiled()
bool is_regex_compiled() const
{
return reg_compiled;
}
Expand Down