2015-07-03 12:57:06 -04:00
|
|
|
//===-- SystemInitializer.cpp -----------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-08-20 16:51:52 -04:00
|
|
|
// 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
|
2015-07-03 12:57:06 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "lldb/Initialization/SystemInitializer.h"
|
|
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
2017-01-02 14:26:05 -05:00
|
|
|
SystemInitializer::SystemInitializer() {}
|
2015-07-03 12:57:06 -04:00
|
|
|
|
2017-01-02 14:26:05 -05:00
|
|
|
SystemInitializer::~SystemInitializer() {}
|