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

operator delete missing noexcept #275

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

operator delete missing noexcept #275

sdutoit opened this issue Feb 13, 2014 · 1 comment
Assignees

Comments

@sdutoit
Copy link
Contributor

sdutoit commented Feb 13, 2014

From an email from Marshall/Jens:

In C++03, those two calls were specified as: (Section 3.7.4)

void operator delete(void*) throw();
void operator delete[](void*) throw();

In n3225, this was changed to:

void operator delete(void*) noexcept;
void operator delete[](void*) 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[](void*);

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

Duplicate of 267, already fixed.

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