diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-18 20:08:09 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-18 20:08:09 +0000 |
commit | 4f8e3f5b6ac6836b17c666a1dd19e18cfbcdd23c (patch) | |
tree | fdb706f2954fbac7fa26add9c28b33ea35304959 | |
parent | 166b608336ce58a3070ba33c1d330b5db77a6c9d (diff) | |
download | bcm5719-llvm-4f8e3f5b6ac6836b17c666a1dd19e18cfbcdd23c.tar.gz bcm5719-llvm-4f8e3f5b6ac6836b17c666a1dd19e18cfbcdd23c.zip |
[Linker] Zap a dead typedef.
llvm-svn: 172841
-rw-r--r-- | llvm/include/llvm/Linker.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/include/llvm/Linker.h b/llvm/include/llvm/Linker.h index 1537d309b8d..a34980698ad 100644 --- a/llvm/include/llvm/Linker.h +++ b/llvm/include/llvm/Linker.h @@ -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 { |