diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-05-03 13:08:54 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-05-03 13:08:54 +0000 |
commit | d56638180014e60538cd666cd11fde6d4698e051 (patch) | |
tree | 68eba2cd6be111640afee29dfd1e700833e6f61a /include/clang/Parse/Action.h | |
parent | 28e9483a1994cb3615a123379b3b299fd5248e22 (diff) |
Replace a char*/size pair with stringref.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@102902 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 6b16522848..3d68d80ef9 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -580,8 +580,7 @@ public: virtual DeclPtrTy ActOnStartLinkageSpecification(Scope *S, SourceLocation ExternLoc, SourceLocation LangLoc, - const char *Lang, - unsigned StrSize, + llvm::StringRef Lang, SourceLocation LBraceLoc) { return DeclPtrTy(); } |