Files
llvm-project/lld/lib/Core/Writer.cpp
Simon Atanasyan c437888f5a Replace the createImplicitFiles method return type with void
All instances of the `createImplicitFiles` always return `true` and this
return value is used nowhere.

llvm-svn: 234205
2015-04-06 20:43:35 +00:00

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