Klemens David Morgenstern
d52d244f83
Closes boostorg/process#134
2020-05-20 21:00:50 +07:00
Klemens Morgenstern
04ab646f12
Merge pull request #136 from jonesmz/patch-10
...
Fix "comparison between signed and unsigned" warning
2020-05-20 20:51:31 +07:00
Klemens David Morgenstern
31c65b5442
Closes boostorg/process#127
2020-05-20 20:49:46 +07:00
Klemens Morgenstern
ebbb6d8b36
Merge pull request #126 from Martchus/fix-on_exit-example
...
Pass io_context in on_exit example
2020-05-20 20:44:42 +07:00
Klemens Morgenstern
b9c0140a26
Merge pull request #119 from licekto/double-closed-fd-fixed
...
Fix for double closed FD: https://github.com/boostorg/process/issues/105
2020-05-20 20:44:02 +07:00
Klemens Morgenstern
27f587a4be
Merge pull request #137 from jonesmz/patch-11
...
Fix async_system_future.cpp:60:9: warning: variable ‘exit_code’ set but not used
2020-05-20 20:40:07 +07:00
Klemens Morgenstern
7f6061c956
Merge pull request #138 from jonesmz/patch-12
...
Fix "comparison between signed and unsigned" warning
2020-05-20 20:38:58 +07:00
Klemens David Morgenstern
2f32c95341
Closes boostorg/process#145 and boostorg/process#188
2020-05-20 20:33:55 +07:00
Klemens Morgenstern
a8029fc191
Merge pull request #140 from jonesmz/patch-14
...
Fix comparison between signed and unsigned integer expressions
2020-05-20 20:15:01 +07:00
Klemens Morgenstern
9f4bd9bce3
Merge pull request #139 from jonesmz/patch-13
...
Fix warning: unused variable ‘env’
2020-05-20 20:14:53 +07:00
Klemens Morgenstern
71f844c24f
Merge pull request #149 from jonesmz/patch-22
...
file_in.hpp:29:17: warning: suggest braces around initialization of subobject
2020-05-20 20:09:30 +07:00
Klemens David Morgenstern
b0b6d67e6f
Closes boostorg/process#144
2020-05-20 20:09:14 +07:00
Klemens David Morgenstern
3a2576a4d8
Merge branch 'develop' of github.com:boostorg/process into develop
2020-05-20 20:07:47 +07:00
Klemens Morgenstern
34eaa262dd
Merge pull request #147 from jonesmz/patch-20
...
close_out.hpp:25:52: warning: suggest braces around initialization of subobject
2020-05-20 20:06:46 +07:00
Klemens Morgenstern
ce3b3d8f99
Merge pull request #148 from jonesmz/patch-21
...
null_in.hpp:28:17: warning: suggest braces around initialization of s…
2020-05-20 20:06:35 +07:00
Klemens Morgenstern
429f2ba95c
Merge pull request #150 from jonesmz/patch-23
...
pipe_in.hpp:30:17: warning: suggest braces around initialization of subobject
2020-05-20 20:05:29 +07:00
Klemens Morgenstern
0c2e7387c8
Merge pull request #152 from Naios/msvcfix
...
[Build Fix] Workaround for a MSVC 14.1 and 14.2 compiler bug
2020-05-20 20:05:22 +07:00
Klemens Morgenstern
2a2ea4b92d
Merge pull request #146 from jonesmz/patch-19
...
Fix example/intro.cpp includes
2020-05-20 20:01:47 +07:00
Klemens David Morgenstern
873ab2558d
Closes boostorg/process#153
2020-05-20 19:58:23 +07:00
Klemens David Morgenstern
03571d4eaf
Merge branch 'develop' of github.com:boostorg/process into develop
2020-05-20 19:44:42 +07:00
Klemens Morgenstern
46ab3ba9b8
Merge pull request #158 from acronce/develop
...
Add the lambda declarator needed to disambiguate the multiple return …
2020-05-20 19:39:24 +07:00
Allen Cronce
3aba1f6eb1
Add the lambda declarator needed to disambiguate the multiple return values from these lambda functions as a bool. Before this change the return of a "false" was interpreted as an int, but the second return is a bool. This caused the following compile error when accessing environment variables under Xcode 11.4.1: Return type 'bool' must match previous return type 'int' when lambda expression has unspecified explicit return type
2020-05-13 07:25:36 -07:00
Denis Blank
44771769fa
Workaround for a MSVC 14.1 and 14.2 compiler bug
...
* boost\include\boost/process/child.hpp(35): error C2600:
'boost::process::child::child': cannot define a compiler-generated
special member function (must be declared in the class first)
* Introduced by 8541cae
* See boostorg/process#113
2020-03-23 22:35:59 +01:00
Michael Jones
8704416941
pipe_in.hpp:30:17: warning: suggest braces around initialization of subobject
2020-03-13 02:57:56 -05:00
Michael Jones
f48392399f
file_in.hpp:29:17: warning: suggest braces around initialization of subobject
2020-03-13 02:57:11 -05:00
Michael Jones
80f81117aa
null_in.hpp:28:17: warning: suggest braces around initialization of subobject
2020-03-13 02:56:28 -05:00
Michael Jones
9cff55215d
close_out.hpp:25:52: warning: suggest braces around initialization of subobject
2020-03-13 02:55:35 -05:00
Michael Jones
2e4b3c2406
Fix example/intro.cpp includes
2020-03-13 02:26:10 -05:00
Michael Jones
b510b6a9d9
Fix comparison between signed and unsigned integer expressions
2020-03-13 01:22:01 -05:00
Michael Jones
046b96186f
Fix warning: unused variable ‘env’
2020-03-13 01:20:10 -05:00
Michael Jones
1df2e67bc4
Fix "comparison between signed and unsigned" warning
2020-03-13 01:18:11 -05:00
Michael Jones
6cf69e2797
Fix async_system_future.cpp:60:9: warning: variable ‘exit_code’ set but not used
2020-03-13 01:11:46 -05:00
Michael Jones
d3e4cbf3b3
Fix "comparison between signed and unsigned" warning
2020-03-13 01:03:31 -05:00
Martchus
e67e49c891
Pass io_context in on_exit example
...
The description already states that an io_context needs
to be passed. This change is adjusting the example accordingly.
2020-03-08 21:17:54 +01:00
Licek Tomáš
29a43b17e4
Fix for double closed FD: https://github.com/boostorg/process/issues/105
2020-02-04 10:22:11 +01:00
Klemens David Morgenstern
6d10c3a807
Merge branch 'develop' of github.com:klemens-morgenstern/boost-process into develop
2020-01-26 15:18:00 +07:00
Klemens Morgenstern
668579ed6f
Merge pull request #110 from sorayuki/patch-1
...
Fix memory over-write in pipe.hpp
2020-01-26 15:17:27 +07:00
Klemens Morgenstern
8af828cd43
Merge pull request #73 from fkonvick/develop
...
Fix double quotes processing on Windows
2020-01-26 15:16:39 +07:00
Klemens Morgenstern
590cc10b42
Merge pull request #75 from brunom/patch-1
...
typo
2020-01-26 15:15:07 +07:00
Klemens Morgenstern
3bc11ce3ac
Merge pull request #113 from jonesmz/patch-1
...
Use = default for default constructor
2020-01-26 15:14:52 +07:00
Klemens Morgenstern
603441ecc3
Merge pull request #114 from jonesmz/patch-2
...
Use static constexpr instead of const for compile-time constant variable
2020-01-26 15:14:32 +07:00
Klemens Morgenstern
612a953369
Merge pull request #115 from jonesmz/patch-3
...
Use move construction for struct start_dir
2020-01-26 15:13:15 +07:00
Klemens Morgenstern
1554773d39
Merge pull request #213 from dermojo/develop
...
Documentation fixes
2020-01-26 15:10:44 +07:00
Daniel Evers
dd003bf2b0
Correct some typos etc.
2020-01-05 17:33:59 +01:00
Klemens Morgenstern
0341e08297
Merge pull request #212 from klemens-morgenstern/develop
...
Master update
boost-1.73.0
boost-1.73.0.beta1
2019-12-29 04:37:11 +08:00
Klemens David Morgenstern
5853345715
trying to fix appveyor to upload to report.ci
2019-12-29 04:16:44 +08:00
Klemens David Morgenstern
41f8b1cf00
removed sigtimedwait for group_wait
2019-12-29 03:39:32 +08:00
Klemens David Morgenstern
56ae00c7a4
typo fix
2019-12-29 00:48:51 +08:00
Klemens David Morgenstern
f58882c956
small travis fixes, hopefully fixing the build
2019-12-29 00:42:21 +08:00
Klemens David Morgenstern
3f14ebc755
changed report script
2019-12-29 00:04:26 +08:00