We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2386ad commit f5bb961Copy full SHA for f5bb961
shared/source/helpers/l3_range.h
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (C) 2021 Intel Corporation
+ * Copyright (C) 2021-2022 Intel Corporation
3
*
4
* SPDX-License-Identifier: MIT
5
@@ -72,7 +72,7 @@ struct L3Range {
72
}
73
74
static L3Range fromAddressSize(uint64_t address, uint64_t size) {
75
- L3Range ret;
+ L3Range ret{};
76
ret.setAddress(address);
77
ret.setMask(getMaskFromSize(size));
78
return ret;
@@ -84,7 +84,7 @@ struct L3Range {
84
85
86
static L3Range fromAddressMask(uint64_t address, uint64_t mask) {
87
88
89
ret.setMask(mask);
90
0 commit comments