1 //===- lib/Core/Writer.cpp ------------------------------------------------===// 2 // 3 // The LLVM Linker 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "lld/Core/File.h" 11 #include "lld/Core/Writer.h" 12 13 namespace lld { 14 Writer::Writer() { 15 } 16 17 Writer::~Writer() { 18 } 19 } // end namespace lld 20