https://github.com/Thibault-Monnier created 
https://github.com/llvm/llvm-project/pull/173801

This header was not being used, as found by `Ctrl + F`-ing all the declarations 
from `tuple` (found at https://en.cppreference.com/w/cpp/header/tuple.html).

>From 16c04b2d019e48bdd337c057a82459ff54bd3c97 Mon Sep 17 00:00:00 2001
From: Thibault-Monnier <[email protected]>
Date: Sun, 28 Dec 2025 23:08:06 +0100
Subject: [PATCH] Remove unused include <tuple> in Lexer.cpp

---
 clang/lib/Lex/Lexer.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp
index b282a600c0e56..afebef0974016 100644
--- a/clang/lib/Lex/Lexer.cpp
+++ b/clang/lib/Lex/Lexer.cpp
@@ -44,7 +44,6 @@
 #include <limits>
 #include <optional>
 #include <string>
-#include <tuple>
 
 #ifdef __SSE4_2__
 #include <nmmintrin.h>

_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to