diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-02-27 02:56:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-02-27 02:56:45 +0000 |
commit | f127eb8aeb3ce861f3dbc1adbb3362bfd98461e1 (patch) | |
tree | 925eb0e23c386b1f2e493a3761df469325e03907 /lib/AST/Type.cpp | |
parent | 18895dc4fd29f0071eeb591be820338f16407906 (diff) |
Rename methods to comply with the LLVM Coding Standards.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Type.cpp')
-rw-r--r-- | lib/AST/Type.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index b7376db493..b802b55d78 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -2008,9 +2008,9 @@ class CachedProperties { public: CachedProperties(LinkageInfo LV, bool local) : LV(LV), local(local) {} - Linkage getLinkage() const { return LV.linkage(); } - Visibility getVisibility() const { return LV.visibility(); } - bool isVisibilityExplicit() const { return LV.visibilityExplicit(); } + Linkage getLinkage() const { return LV.getLinkage(); } + Visibility getVisibility() const { return LV.getVisibility(); } + bool isVisibilityExplicit() const { return LV.isVisibilityExplicit(); } bool hasLocalOrUnnamedType() const { return local; } friend CachedProperties merge(CachedProperties L, CachedProperties R) { |