[Lldb-commits] [lldb] r281594 - Try to fix windows build after rL281569

Tamas Berghammer via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 15 01:48:00 PDT 2016


Author: tberghammer
Date: Thu Sep 15 03:47:59 2016
New Revision: 281594

URL: http://llvm.org/viewvc/llvm-project?rev=281594&view=rev
Log:
Try to fix windows build after rL281569

Modified:
    lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h
    lldb/trunk/include/lldb/Breakpoint/BreakpointResolver.h

Modified: lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h?rev=281594&r1=281593&r2=281594&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h (original)
+++ lldb/trunk/include/lldb/Breakpoint/BreakpointOptions.h Thu Sep 15 03:47:59 2016
@@ -61,7 +61,7 @@ public:
     static const char
         *g_option_names[static_cast<uint32_t>(OptionNames::LastOptionName)];
 
-    static const char *GetKey(enum OptionNames enum_value) {
+    static const char *GetKey(OptionNames enum_value) {
       return g_option_names[static_cast<uint32_t>(enum_value)];
     }
   };

Modified: lldb/trunk/include/lldb/Breakpoint/BreakpointResolver.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Breakpoint/BreakpointResolver.h?rev=281594&r1=281593&r2=281594&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Breakpoint/BreakpointResolver.h (original)
+++ lldb/trunk/include/lldb/Breakpoint/BreakpointResolver.h Thu Sep 15 03:47:59 2016
@@ -222,7 +222,7 @@ protected:
       *g_option_names[static_cast<uint32_t>(OptionNames::LastOptionName)];
 
 public:
-  static const char *GetKey(enum OptionNames enum_value) {
+  static const char *GetKey(OptionNames enum_value) {
     return g_option_names[static_cast<uint32_t>(enum_value)];
   }
 




More information about the lldb-commits mailing list