Build failure with GCC 12: no matching function for call to 'end(LChar [7])'
https://bugs.webkit.org/show_bug.cgi?id=235458

Unreviewed. Just need to #include <string> here.

Patch by Michael Catanzaro <mcatanzaro@gnome.org> on 2022-01-24

* wtf/text/IntegerToStringConversion.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@288460 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog
index 0447a49..597ce82 100644
--- a/Source/WTF/ChangeLog
+++ b/Source/WTF/ChangeLog
@@ -1,5 +1,14 @@
 2022-01-24  Michael Catanzaro  <mcatanzaro@gnome.org>
 
+        Build failure with GCC 12: no matching function for call to 'end(LChar [7])'
+        https://bugs.webkit.org/show_bug.cgi?id=235458
+
+        Unreviewed. Just need to #include <string> here.
+
+        * wtf/text/IntegerToStringConversion.h:
+
+2022-01-24  Michael Catanzaro  <mcatanzaro@gnome.org>
+
         REGRESION(r288200): [GTK][WPE] Build broken on Ubuntu 18.04
         https://bugs.webkit.org/show_bug.cgi?id=235401
 
diff --git a/Source/WTF/wtf/text/IntegerToStringConversion.h b/Source/WTF/wtf/text/IntegerToStringConversion.h
index 20af396..0c9a2f1 100644
--- a/Source/WTF/wtf/text/IntegerToStringConversion.h
+++ b/Source/WTF/wtf/text/IntegerToStringConversion.h
@@ -21,6 +21,7 @@
 
 #pragma once
 
+#include <string>
 #include <wtf/text/LChar.h>
 
 namespace WTF {