Merge pull request #659 from gittiver/fix_issue_547_Missing_const_in_code_example

added const as in source
This commit is contained in:
Farook Al-Sammarraie 2023-06-13 16:22:48 +00:00 committed by GitHub
commit 5baa4e620c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ class a : public crow::returnable
...
...
std::string dump() override
std::string dump() const override
{
return this.as_string();
}