From 2f85ca777b5a9c4f8c01c223415f584146f90c4e Mon Sep 17 00:00:00 2001 From: momo5502 Date: Tue, 3 Oct 2023 14:09:34 +0200 Subject: [PATCH] Add missing consts --- src/html_value.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html_value.cpp b/src/html_value.cpp index 56a11b9..cd9a4a3 100644 --- a/src/html_value.cpp +++ b/src/html_value.cpp @@ -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) { @@ -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) {