1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

[Linker] Zap a dead typedef.

llvm-svn: 172841
This commit is contained in:
Daniel Dunbar 2013-01-18 20:08:09 +00:00
parent 3fc02ad019
commit c3319a35d0

View File

@ -43,14 +43,6 @@ class Linker {
/// @name Types
/// @{
public:
/// This type is used to pass the linkage items (libraries and files) to
/// the LinkItems function. It is composed of string/bool pairs. The string
/// provides the name of the file or library (as with the -l option). The
/// bool should be true for libraries and false for files, signifying
/// "isLibrary".
/// @brief A list of linkage items
typedef std::vector<std::pair<std::string,bool> > ItemList;
/// This enumeration is used to control various optional features of the
/// linker.
enum ControlFlags {