summaryrefslogtreecommitdiff
path: root/mfbt
diff options
context:
space:
mode:
authorBrian Smith <brian@dbsoft.org>2023-07-12 17:52:59 -0500
committerBrian Smith <brian@dbsoft.org>2023-07-12 17:52:59 -0500
commit0980b1e93685bc6505189073869818392e81e56b (patch)
tree3723b5eaa1273c3a335ae6eb69751e5dcae94d59 /mfbt
parentf0b08a209d1d2fdc915ca35fc739ac3d02f653ce (diff)
downloaduxp-0980b1e93685bc6505189073869818392e81e56b.tar.gz
Issue #2255 - Fix build bustage on Linux.
Need #include <utility> to ensure std::forward is available.
Diffstat (limited to 'mfbt')
-rw-r--r--mfbt/Maybe.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/mfbt/Maybe.h b/mfbt/Maybe.h
index 6c0fbe7ba2..cc02528f92 100644
--- a/mfbt/Maybe.h
+++ b/mfbt/Maybe.h
@@ -16,6 +16,7 @@
#include <new> // for placement new
#include <type_traits>
+#include <utility>
namespace mozilla {