diff options
Diffstat (limited to 'include/lldb/API/SBVariablesOptions.h')
| -rw-r--r-- | include/lldb/API/SBVariablesOptions.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/lldb/API/SBVariablesOptions.h b/include/lldb/API/SBVariablesOptions.h index 0059a41129c5..e226ce4ae13b 100644 --- a/include/lldb/API/SBVariablesOptions.h +++ b/include/lldb/API/SBVariablesOptions.h @@ -1,10 +1,9 @@ //===-- SBVariablesOptions.h ------------------------------------------*- C++ //-*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -27,6 +26,8 @@ public: ~SBVariablesOptions(); + explicit operator bool() const; + bool IsValid() const; bool GetIncludeArguments() const; @@ -73,7 +74,7 @@ protected: void SetOptions(VariablesOptionsImpl *lldb_object_ptr); private: - std::unique_ptr<VariablesOptionsImpl> m_opaque_ap; + std::unique_ptr<VariablesOptionsImpl> m_opaque_up; }; } // namespace lldb |
