Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing noexcept on operator delete declarations #267

Closed
sdutoit opened this issue Feb 8, 2014 · 1 comment
Closed

Missing noexcept on operator delete declarations #267

sdutoit opened this issue Feb 8, 2014 · 1 comment

Comments

@sdutoit
Copy link
Contributor

sdutoit commented Feb 8, 2014

From an email by Jens via Marshall:

In C++03, those two calls were specified as: (Section 3.7.4)
void operator delete(void*) throw();
void operator delete throw();

In n3225, this was changed to:
void operator delete(void*) noexcept;
void operator delete noexcept;
with the appropriate editing marks striking out the “throw()” and adding the “noexcept”

In n3242, however, they appear as:
void operator delete(void*);
void operator delete;
and there are no editing marks - even though other changes in that document are so marked.

Also, there is no mention of this change in the editor’s report (n3243)
[ though issue GB59 touches on this - but for chapter 18, not 3 ]

@zygoloid
Copy link
Member

Fixed by commit 3d2c8fa.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants