Use namespace std::experimental::net where possible#65
Open
LarsGullik wants to merge 1 commit intocplusplus:masterfrom
Open
Use namespace std::experimental::net where possible#65LarsGullik wants to merge 1 commit intocplusplus:masterfrom
LarsGullik wants to merge 1 commit intocplusplus:masterfrom
Conversation
Member
|
That's a C++17 feature, so we can't use it in the TS which is based on C++14. In theory we could rebase it on C++17, so if I get time I might write a paper proposing that for Toronto. |
Contributor
Author
|
I was told that we could rebase on the DIS, and that we were actually
supposed to do that.
(Jeffrey mentioned that when I asked.)
There is no mention in the TS that it is based on C++14, just that it is
based on C++.
…On 29 March 2017 at 23:14, Jonathan Wakely ***@***.***> wrote:
That's a C++17 feature, so we can't use it in the TS which is based on
C++14.
In theory we could rebase it on C++17, so if I get time I might write a
paper proposing that for Toronto.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#65 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AO9CuK1cSA5BeIQtjczFHaftAL9ooXp9ks5rq3J4gaJpZM4MuCOE>
.
--
Lgb
|
Member
|
There's an NB comment about the normative references, and the resolution for that adds a reference to ISO/IEC 14882:2014, but it can be changed. I'll accept this change if/when we rebase it, but it's arguably not editorial now. |
Collapse
namespace std {
namespace experimental {
namespace net
}}}
to
namespace std::experimental::net {
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Collapse
namespace std {
namespace experimental {
namespace net
}}}
to
namespace std::experimental::net {
}