Remove bad indentation introduced in 263859
authorLuke Drummond <luke.drummond@codeplay.com>
Fri, 8 Apr 2016 16:52:40 +0000 (16:52 +0000)
committerLuke Drummond <luke.drummond@codeplay.com>
Fri, 8 Apr 2016 16:52:40 +0000 (16:52 +0000)
This commit touches whitespace only.
This commit was the original intention of the botched 265797

llvm-svn: 265808

lldb/include/lldb/Expression/LLVMUserExpression.h

index f2d7db9..43ac0eb 100644 (file)
@@ -34,27 +34,27 @@ namespace lldb_private
 //----------------------------------------------------------------------
 class LLVMUserExpression : public UserExpression
 {
-  public:
-      LLVMUserExpression(ExecutionContextScope &exe_scope, const char *expr, const char *expr_prefix,
-                         lldb::LanguageType language, ResultType desired_type,
-                         const EvaluateExpressionOptions &options);
-      ~LLVMUserExpression() override;
-
-      lldb::ExpressionResults
-      Execute(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx,
-              const EvaluateExpressionOptions &options, lldb::UserExpressionSP &shared_ptr_to_me,
-              lldb::ExpressionVariableSP &result) override;
-
-      bool
-      FinalizeJITExecution(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx,
-                           lldb::ExpressionVariableSP &result,
-                           lldb::addr_t function_stack_bottom = LLDB_INVALID_ADDRESS,
-                           lldb::addr_t function_stack_top = LLDB_INVALID_ADDRESS) override;
-
-      bool
-      CanInterpret() override
-      {
-          return m_can_interpret;
+public:
+    LLVMUserExpression(ExecutionContextScope &exe_scope, const char *expr, const char *expr_prefix,
+                       lldb::LanguageType language, ResultType desired_type,
+                       const EvaluateExpressionOptions &options);
+    ~LLVMUserExpression() override;
+
+    lldb::ExpressionResults
+    Execute(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx,
+            const EvaluateExpressionOptions &options, lldb::UserExpressionSP &shared_ptr_to_me,
+            lldb::ExpressionVariableSP &result) override;
+
+    bool
+    FinalizeJITExecution(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx,
+                         lldb::ExpressionVariableSP &result,
+                         lldb::addr_t function_stack_bottom = LLDB_INVALID_ADDRESS,
+                         lldb::addr_t function_stack_top = LLDB_INVALID_ADDRESS) override;
+
+    bool
+    CanInterpret() override
+    {
+        return m_can_interpret;
     }
 
     //------------------------------------------------------------------