mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-01 06:25:34 +00:00
[2701] Added missing const to the function returning DUID.
This commit is contained in:
@@ -41,7 +41,7 @@ DUID::DUID(const uint8_t* data, size_t len) {
|
|||||||
duid_ = std::vector<uint8_t>(data, data + len);
|
duid_ = std::vector<uint8_t>(data, data + len);
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<uint8_t> DUID::getDuid() const {
|
std::vector<uint8_t> DUID::getDuid() const {
|
||||||
return (duid_);
|
return (duid_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user