blob: cfee50c7a017f72fe3a67b982a0ae34753bcaf00 [file] [log] [blame]
William A. Kennington IIIac69b482021-06-02 12:28:27 -07001From f999aeb5ceb77b81c36e6a55300a521aaa2da882 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 26 May 2021 22:12:46 -0700
4Subject: [PATCH] aptwebserver.cc: Include <array>
5
6This helps getting std::array definition
7
8Fixes
9test/interactive-helper/aptwebserver.cc:36:55: error: constexpr variable cannot have non-literal type 'const std::array<std::array<const char *, 2>, 6>'
10 constexpr std::array<std::array<char const *,2>,6> htmlencode = {{
11
12Upstream-Status: Submitted [https://github.com/Debian/apt/pull/133]
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 test/interactive-helper/aptwebserver.cc | 1 +
16 1 file changed, 1 insertion(+)
17
18diff --git a/test/interactive-helper/aptwebserver.cc b/test/interactive-helper/aptwebserver.cc
19index 58ba54f84..0e030c7e9 100644
20--- a/test/interactive-helper/aptwebserver.cc
21+++ b/test/interactive-helper/aptwebserver.cc
22@@ -22,6 +22,7 @@
23 #include <unistd.h>
24
25 #include <algorithm>
26+#include <array>
27 #include <fstream>
28 #include <iostream>
29 #include <list>
30--
312.31.1
32