Skip to content

Commit

Permalink
Missing array.h include in generated PlugInsResourcesData
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=272744

Reviewed by Michael Catanzaro.

* Source/WebCore/css/make-css-file-arrays.pl: Add includes necessary for std::array usage.

Canonical link: https://commits.webkit.org/277575@main
  • Loading branch information
philn committed Apr 16, 2024
1 parent 3baa72d commit 18a90f0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/WebCore/css/make-css-file-arrays.pl
Expand Up @@ -41,6 +41,9 @@
open HEADER, ">", $header or die;
open OUT, ">", $out or die;

print HEADER "#include <array>\n";
print OUT "#include <array>\n";

print HEADER "namespace WebCore {\n";
print OUT "namespace WebCore {\n";

Expand Down

0 comments on commit 18a90f0

Please sign in to comment.