12345678910111213141516171819202122232425262728 |
- From 9f399675b821e175f85ac3ee6e3fd2e6056573eb Mon Sep 17 00:00:00 2001
- From: Daan De Meyer <daan.j.demeyer@gmail.com>
- Date: Fri, 21 Apr 2023 19:36:45 +0200
- Subject: [PATCH] Fix gcc 13 build
- Upstream: https://github.com/DaanDeMeyer/reproc/commit/9f399675b821e175f85ac3ee6e3fd2e6056573eb
- Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
- ---
- reproc++/include/reproc++/reproc.hpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/reproc++/include/reproc++/reproc.hpp b/reproc++/include/reproc++/reproc.hpp
- index b52f495e..7b614a94 100644
- --- a/reproc++/include/reproc++/reproc.hpp
- +++ b/reproc++/include/reproc++/reproc.hpp
- @@ -88,10 +88,10 @@ struct redirect {
-
- struct options {
- struct {
- - enum env::type behavior;
- + reproc::env::type behavior;
- /*! Implicitly converts from any STL container of string pairs to the
- environment format expected by `reproc_start`. */
- - class env extra;
- + reproc::env extra;
- } env = {};
-
- const char *working_directory = nullptr;
|