diff options
Diffstat (limited to 'source/API/SystemInitializerFull.h')
-rw-r--r-- | source/API/SystemInitializerFull.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/source/API/SystemInitializerFull.h b/source/API/SystemInitializerFull.h index b0cf476e9193..cd88bae97858 100644 --- a/source/API/SystemInitializerFull.h +++ b/source/API/SystemInitializerFull.h @@ -1,9 +1,8 @@ //===-- SystemInitializerFull.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 // //===----------------------------------------------------------------------===// @@ -13,24 +12,19 @@ #include "lldb/Initialization/SystemInitializerCommon.h" namespace lldb_private { -//------------------------------------------------------------------ /// Initializes lldb. /// /// This class is responsible for initializing all of lldb system /// services needed to use the full LLDB application. This class is /// not intended to be used externally, but is instead used /// internally by SBDebugger to initialize the system. -//------------------------------------------------------------------ class SystemInitializerFull : public SystemInitializerCommon { public: SystemInitializerFull(); ~SystemInitializerFull() override; - llvm::Error Initialize(const InitializerOptions &options) override; + llvm::Error Initialize() override; void Terminate() override; - -private: - void InitializeSWIG(); }; } // namespace lldb_private |