[Lldb-commits] [lldb] r221018 - TOT broken by R220956 - Differential Revision: http://reviews/llvm.org/D6066
Shawn Best
sbest at blueshiftinc.com
Fri Oct 31 16:20:13 PDT 2014
Author: sbest
Date: Fri Oct 31 18:20:13 2014
New Revision: 221018
URL: http://llvm.org/viewvc/llvm-project?rev=221018&view=rev
Log:
TOT broken by R220956 - Differential Revision: http://reviews/llvm.org/D6066
Modified:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=221018&r1=221017&r2=221018&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Fri Oct 31 18:20:13 2014
@@ -1739,7 +1739,7 @@ ClangASTContext::CreateFunctionDeclarati
DeclarationName (&ast->Idents.get(name)),
function_clang_type.GetQualType(),
nullptr,
- (FunctionDecl::StorageClass)storage,
+ (clang::StorageClass)storage,
is_inline,
hasWrittenPrototype,
isConstexprSpecified);
@@ -1753,7 +1753,7 @@ ClangASTContext::CreateFunctionDeclarati
DeclarationName (),
function_clang_type.GetQualType(),
nullptr,
- (FunctionDecl::StorageClass)storage,
+ (clang::StorageClass)storage,
is_inline,
hasWrittenPrototype,
isConstexprSpecified);
@@ -1805,7 +1805,7 @@ ClangASTContext::CreateParameterDeclarat
name && name[0] ? &ast->Idents.get(name) : nullptr,
param_type.GetQualType(),
nullptr,
- (VarDecl::StorageClass)storage,
+ (clang::StorageClass)storage,
nullptr);
}
More information about the lldb-commits
mailing list