|
@@ -66,7 +66,7 @@ decodeCheck(const string& input_string, vector<uint8_t>& output,
|
|
|
const string& expected)
|
|
|
{
|
|
|
decodeBase32Hex(input_string, output);
|
|
|
- EXPECT_EQ(expected, string(&output[0], &output[0] + output.size()));
|
|
|
+ EXPECT_EQ(expected, string(output.begin(), output.end()));
|
|
|
}
|
|
|
|
|
|
TEST_F(Base32HexTest, decode) {
|