Fix a bunch of little errors that Clang complains about when its being pedantic

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91764 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor
2009-12-19 07:05:23 +00:00
parent 0ebc6ce974
commit cabdd7425d
10 changed files with 24 additions and 24 deletions

View File

@@ -236,7 +236,7 @@ namespace {
const MCSection *S;
unsigned Alignment;
SmallVector<unsigned, 4> CPEs;
SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {};
SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
};
}