aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Symbol/ClangUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Symbol/ClangUtil.h')
-rw-r--r--include/lldb/Symbol/ClangUtil.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/include/lldb/Symbol/ClangUtil.h b/include/lldb/Symbol/ClangUtil.h
index ee9ff5678d79..cb380221152a 100644
--- a/include/lldb/Symbol/ClangUtil.h
+++ b/include/lldb/Symbol/ClangUtil.h
@@ -16,21 +16,15 @@
#include "lldb/Symbol/CompilerType.h"
-namespace lldb_private
-{
-struct ClangUtil
-{
- static bool
- IsClangType(const CompilerType &ct);
+namespace lldb_private {
+struct ClangUtil {
+ static bool IsClangType(const CompilerType &ct);
- static clang::QualType
- GetQualType(const CompilerType &ct);
+ static clang::QualType GetQualType(const CompilerType &ct);
- static clang::QualType
- GetCanonicalQualType(const CompilerType &ct);
+ static clang::QualType GetCanonicalQualType(const CompilerType &ct);
- static CompilerType
- RemoveFastQualifiers(const CompilerType &ct);
+ static CompilerType RemoveFastQualifiers(const CompilerType &ct);
};
}