2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[#3031] compilation fix

This commit is contained in:
Marcin Godzina
2023-08-29 09:26:17 +00:00
committed by Razvan Becheriu
parent 1ea7274b5f
commit 7129fed942
2 changed files with 2 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ TEST(StampedValueTest, createFromInteger) {
EXPECT_EQ(Element::integer, value->getType());
EXPECT_EQ("bar", value->getName());
EXPECT_EQ("5", value->getValue());
int64_t signed_integer;
int64_t signed_integer = 0;
ASSERT_NO_THROW(signed_integer = value->getIntegerValue());
EXPECT_EQ(5, signed_integer);

View File

@@ -7,6 +7,7 @@
#include <config.h>
#include <functional>
#include <iomanip>
#include <vector>
#include <string>
#include <sstream>