File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,12 @@ struct test_object_hash
46
46
47
47
test_object_hash () = delete ;
48
48
49
- // Construct hash test object with result only (no message and no length).
49
+ // Construct this hash test object by setting the result only.
50
+ // There is no message and there is no length available for
51
+ // this hash test object.
52
+
50
53
explicit test_object_hash (const std::string& str_result)
51
- : my_result
54
+ : my_result // LCOV_EXCL_LINE
52
55
{
53
56
[&str_result]()
54
57
{
@@ -58,7 +61,8 @@ struct test_object_hash
58
61
}
59
62
{ }
60
63
61
- // Construct hash test object with all of message, length and result.
64
+ // Construct this hash test object with all of message, length and result.
65
+
62
66
explicit test_object_hash (const std::string& str_data, const std::string& str_result)
63
67
: my_length { str_data.size () / static_cast <size_type>(UINT8_C (2 )) },
64
68
my_msg
You can’t perform that action at this time.
0 commit comments