Skip to content
Snippets Groups Projects
Commit 2a6918e4 authored by Jonathan Wakely's avatar Jonathan Wakely
Browse files

libstdc++: Make net::system_context tag type constructor explicit

libstdc++-v3/ChangeLog:

	* include/experimental/executor (system_context::a__tag): Make
	default constructor explicit.
parent 61759518
No related branches found
No related tags found
No related merge requests found
...@@ -884,7 +884,7 @@ inline namespace v1 ...@@ -884,7 +884,7 @@ inline namespace v1
private: private:
friend system_executor; friend system_executor;
struct __tag { }; struct __tag { explicit __tag() = default; };
system_context(__tag) { } system_context(__tag) { }
thread _M_thread; thread _M_thread;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment