mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
20 lines
473 B
C++
20 lines
473 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/File.h"
|
||
|
|
#include "lld/Core/Writer.h"
|
||
|
|
|
||
|
|
namespace lld {
|
||
|
|
Writer::Writer() {
|
||
|
|
}
|
||
|
|
|
||
|
|
Writer::~Writer() {
|
||
|
|
}
|
||
|
|
} // end namespace lld
|