commit a940f2736940400307901c4f190d9850c324c11a
parent 3d7f82dd4cb5e77156cea1d4b7d53b97edf0a61a
Author: Tooru Fujisawa <arai_a@mac.com>
Date: Fri, 28 Nov 2025 23:39:39 +0000
Bug 2002694 - Part 1: Update MozsearchIndexer.cpp. r=asuth
Differential Revision: https://phabricator.services.mozilla.com/D274402
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build/clang-plugin/mozsearch-plugin/MozsearchIndexer.cpp b/build/clang-plugin/mozsearch-plugin/MozsearchIndexer.cpp
@@ -33,6 +33,7 @@
#include <sstream>
#include <stack>
#include <string>
+#include <tuple>
#include <unordered_set>
#include <stdio.h>
@@ -52,7 +53,7 @@
// prior to that, we need to fall back to llvm's make_unique. It's also the
// case that we expect clang 10 to build with c++14 and clang 9 and earlier to
// build with c++11, at least as suggested by the llvm-config --cxxflags on
-// non-windows platforms. mozilla-central seems to build with -std=c++17 on
+// non-windows platforms. firefox-main seems to build with -std=c++17 on
// windows so we need to make this decision based on __cplusplus instead of
// the CLANG_VERSION_MAJOR.
#if __cplusplus < 201402L