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 e72d956 commit d09be91Copy full SHA for d09be91
llvm/include/llvm/DebugInfo/GSYM/MergedFunctionsInfo.h
@@ -24,7 +24,7 @@ struct FunctionInfo;
24
struct MergedFunctionsInfo {
25
std::vector<FunctionInfo> MergedFunctions;
26
27
- void clear() { MergedFunctions.clear(); }
+ void clear();
28
29
/// Query if a MergedFunctionsInfo object is valid.
30
///
llvm/lib/DebugInfo/GSYM/MergedFunctionsInfo.cpp
@@ -14,6 +14,8 @@
14
using namespace llvm;
15
using namespace gsym;
16
17
+void MergedFunctionsInfo::clear() { MergedFunctions.clear(); }
18
+
19
llvm::Error MergedFunctionsInfo::encode(FileWriter &Out) const {
20
Out.writeU32(MergedFunctions.size());
21
for (const auto &F : MergedFunctions) {
0 commit comments