Skip to content

Commit 1c1a207

Browse files
Address a comment.
1 parent 659869e commit 1c1a207

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/include/llvm/IR/ModuleSummaryIndex.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1319,8 +1319,10 @@ class CfiFunctionIndex {
13191319

13201320
std::vector<StringRef> symbols() const {
13211321
std::vector<StringRef> Symbols;
1322-
for (auto &[GUID, Syms] : Index)
1322+
for (auto &[GUID, Syms] : Index) {
1323+
(void)GUID;
13231324
llvm::append_range(Symbols, Syms);
1325+
}
13241326
return Symbols;
13251327
}
13261328

0 commit comments

Comments
 (0)