Add comments back that were accidentally removed in r170933.

llvm-svn: 170938
This commit is contained in:
Chad Rosier 2012-12-21 22:38:37 +00:00
parent 9e89195dce
commit 8a67a65a4b
1 changed files with 2 additions and 0 deletions

View File

@ -714,12 +714,14 @@ bool DeclSpec::SetTypeQual(TQ T, SourceLocation Loc, const char *&PrevSpec,
}
bool DeclSpec::setFunctionSpecInline(SourceLocation Loc) {
// 'inline inline' is ok.
FS_inline_specified = true;
FS_inlineLoc = Loc;
return false;
}
bool DeclSpec::setFunctionSpecVirtual(SourceLocation Loc) {
// 'virtual virtual' is ok.
FS_virtual_specified = true;
FS_virtualLoc = Loc;
return false;