[Lldb-commits] [lldb] r109254 - /lldb/trunk/include/lldb/Symbol/ClangASTContext.h
Benjamin Kramer
benny.kra at googlemail.com
Fri Jul 23 11:59:12 PDT 2010
Author: d0k
Date: Fri Jul 23 13:59:12 2010
New Revision: 109254
URL: http://llvm.org/viewvc/llvm-project?rev=109254&view=rev
Log:
Remove useless typedef keyword, fix a clang warning.
Modified:
lldb/trunk/include/lldb/Symbol/ClangASTContext.h
Modified: lldb/trunk/include/lldb/Symbol/ClangASTContext.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ClangASTContext.h?rev=109254&r1=109253&r2=109254&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ClangASTContext.h (original)
+++ lldb/trunk/include/lldb/Symbol/ClangASTContext.h Fri Jul 23 13:59:12 2010
@@ -37,7 +37,7 @@
// will then be able to use one enumeration for all access and we can
// translate them correctly into the correct Clang versions depending on
// what the access is applied to.
- typedef enum AccessType
+ enum AccessType
{
eAccessNone,
eAccessPublic,
More information about the lldb-commits
mailing list