mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 16:52:21 -04:00
18 lines
462 B
C++
18 lines
462 B
C++
//===- lib/Core/Writer.cpp ------------------------------------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lld/Core/Writer.h"
|
|
|
|
namespace lld {
|
|
|
|
Writer::Writer() = default;
|
|
|
|
Writer::~Writer() = default;
|
|
|
|
} // end namespace lld
|