Skip to content

Commit e2ae90b

Browse files
remove redundant initialization
1 parent aa95464 commit e2ae90b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/include/lldb/Core/DemangledNameInfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ struct DemangledNameInfo {
6363
/// Indicates the [start, end) of the function's prefix. This is a
6464
/// catch-all range for anything that is not tracked by the rest of
6565
/// the pairs.
66-
std::pair<size_t, size_t> PrefixRange{};
66+
std::pair<size_t, size_t> PrefixRange;
6767

6868
/// Indicates the [start, end) of the function's suffix. This is a
6969
/// catch-all range for anything that is not tracked by the rest of
7070
/// the pairs.
71-
std::pair<size_t, size_t> SuffixRange{};
71+
std::pair<size_t, size_t> SuffixRange;
7272

7373
/// Returns \c true if this object holds a valid basename range.
7474
bool hasBasename() const {

0 commit comments

Comments
 (0)