Skip to content

Commit

Permalink
Add missing consts
Browse files Browse the repository at this point in the history
  • Loading branch information
momo5502 committed Oct 3, 2023
1 parent 19c0d35 commit 2f85ca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/html_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace momo
return *this;
}

void html_value::move_to(VARIANT& var, bool is_initialized)
void html_value::move_to(VARIANT& var, const bool is_initialized)
{
if (is_initialized)
{
Expand All @@ -82,7 +82,7 @@ namespace momo
VariantInit(this_variant);
}

void html_value::move_to(VARIANT* var, bool is_initialized)
void html_value::move_to(VARIANT* var, const bool is_initialized)
{
if (var)
{
Expand Down

0 comments on commit 2f85ca7

Please sign in to comment.