From 334b37f48672b8d85700923bae493acb7db3060b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 12 Jun 2017 12:02:06 +0200 Subject: Resolve ambiguity between std:: and butl:: optional --- tests/process/driver.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/process') diff --git a/tests/process/driver.cxx b/tests/process/driver.cxx index cd79d71..8e0ad36 100644 --- a/tests/process/driver.cxx +++ b/tests/process/driver.cxx @@ -307,12 +307,12 @@ main (int argc, const char* argv[]) // Note that if to create as just process(0) then the // process(const char* args[], int=0, int=1, int=2) ctor is being called. // - process p (optional (process_exit (0))); + process p (process_exit (0)); assert (p.wait ()); // "Exited" successfully. } { - process p (optional (process_exit (1))); + process p (process_exit (1)); assert (!p.wait ()); // "Exited" with an error. } -- cgit v1.1