aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/TextAPI/BinaryReader/DylibReader.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-11-02 13:15:16 -0800
committerGitHub <noreply@github.com>2025-11-02 13:15:16 -0800
commit707bab651ff39f399e2fa2c9c185d9a2795e8be8 (patch)
tree8a94df698eb63d80c1898a43cb0bf6a213aaae94 /llvm/lib/TextAPI/BinaryReader/DylibReader.cpp
parentb6399d1542f73a1eeecbd20e79b0d2e8caaa21ae (diff)
downloadllvm-707bab651ff39f399e2fa2c9c185d9a2795e8be8.zip
llvm-707bab651ff39f399e2fa2c9c185d9a2795e8be8.tar.gz
llvm-707bab651ff39f399e2fa2c9c185d9a2795e8be8.tar.bz2
[llvm] Remove redundant typename (NFC) (#166087)
Identified with readability-redundant-typename.
Diffstat (limited to 'llvm/lib/TextAPI/BinaryReader/DylibReader.cpp')
-rw-r--r--llvm/lib/TextAPI/BinaryReader/DylibReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/TextAPI/BinaryReader/DylibReader.cpp b/llvm/lib/TextAPI/BinaryReader/DylibReader.cpp
index cda07e8..f55bc9c 100644
--- a/llvm/lib/TextAPI/BinaryReader/DylibReader.cpp
+++ b/llvm/lib/TextAPI/BinaryReader/DylibReader.cpp
@@ -32,7 +32,7 @@ using namespace llvm::MachO;
using namespace llvm::MachO::DylibReader;
using TripleVec = std::vector<Triple>;
-static typename TripleVec::iterator emplace(TripleVec &Container, Triple &&T) {
+static TripleVec::iterator emplace(TripleVec &Container, Triple &&T) {
auto I = partition_point(Container, [=](const Triple &CT) {
return std::forward_as_tuple(CT.getArch(), CT.getOS(),
CT.getEnvironment()) <