diff options
Diffstat (limited to 'lldb/include/lldb/Target/ThreadPlanCallUserExpression.h')
-rw-r--r-- | lldb/include/lldb/Target/ThreadPlanCallUserExpression.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h b/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h index 637215582410..adaea6c7056f 100644 --- a/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h +++ b/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef liblldb_ThreadPlanCallUserExpression_h_ -#define liblldb_ThreadPlanCallUserExpression_h_ +#ifndef LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H +#define LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H #include "lldb/Target/Thread.h" #include "lldb/Target/ThreadPlan.h" @@ -56,9 +56,11 @@ private: m_result_var_sp; // If we are left to manage the materialization, // then stuff the result expression variable here. - DISALLOW_COPY_AND_ASSIGN(ThreadPlanCallUserExpression); + ThreadPlanCallUserExpression(const ThreadPlanCallUserExpression &) = delete; + const ThreadPlanCallUserExpression & + operator=(const ThreadPlanCallUserExpression &) = delete; }; } // namespace lldb_private -#endif // liblldb_ThreadPlanCallUserExpression_h_ +#endif // LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H |