Skip to content

Commit 56739f5

Browse files
[Analysis] Fix a warning
This patch fixes: llvm/lib/Analysis/IR2Vec.cpp:296:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
1 parent 0745eb5 commit 56739f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/IR2Vec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ Error IR2VecVocabAnalysis::parseVocabSection(
293293
"' section of the vocabulary are not of the same dimension");
294294

295295
return Error::success();
296-
};
296+
}
297297

298298
// FIXME: Make this optional. We can avoid file reads
299299
// by auto-generating a default vocabulary during the build time.

0 commit comments

Comments
 (0)