[Lldb-commits] [lldb] r205739 - Cleanup the code a bit.

Greg Clayton gclayton at apple.com
Mon Apr 7 14:37:03 PDT 2014


Author: gclayton
Date: Mon Apr  7 16:37:03 2014
New Revision: 205739

URL: http://llvm.org/viewvc/llvm-project?rev=205739&view=rev
Log:
Cleanup the code a bit.


Modified:
    lldb/trunk/source/Interpreter/Args.cpp

Modified: lldb/trunk/source/Interpreter/Args.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/Args.cpp?rev=205739&r1=205738&r2=205739&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/Args.cpp (original)
+++ lldb/trunk/source/Interpreter/Args.cpp Mon Apr  7 16:37:03 2014
@@ -1322,7 +1322,7 @@ Args::ParseAliasOptions (Options &option
         if (val == 0)
             continue;
 
-        ((Options *) &options)->OptionSeen (val);
+        options.OptionSeen (val);
 
         // Look up the long option index
         if (long_options_index == -1)





More information about the lldb-commits mailing list