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 d1e38ea commit 56e01c9Copy full SHA for 56e01c9
llvm/include/llvm/DebugInfo/GSYM/InlineInfo.h
@@ -58,12 +58,12 @@ class GsymReader;
58
///
59
struct InlineInfo {
60
61
- uint32_t Name; ///< String table offset in the string table.
62
- uint32_t CallFile; ///< 1 based file index in the file table.
63
- uint32_t CallLine; ///< Source line number.
+ uint32_t Name = 0; ///< String table offset in the string table.
+ uint32_t CallFile = 0; ///< 1 based file index in the file table.
+ uint32_t CallLine = 0; ///< Source line number.
64
AddressRanges Ranges;
65
std::vector<InlineInfo> Children;
66
- InlineInfo() : Name(0), CallFile(0), CallLine(0) {}
+ InlineInfo() = default;
67
void clear() {
68
Name = 0;
69
CallFile = 0;
0 commit comments