-
Notifications
You must be signed in to change notification settings - Fork 967
Tighten wording in mutable data members #4984
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
Tighten wording in mutable data members #4984
Conversation
@Rageking8 : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
Learn Build status updates of commit 3ba42ac:
|
File | Status | Preview URL | Details |
---|---|---|---|
docs/cpp/mutable-data-members-cpp.md | Details |
docs/cpp/mutable-data-members-cpp.md
- Line 4, Column 10: [Warning: ms-date-invalid - See documentation]
Value out of range for 'ms.date': '03/14/2024'. If specified, must be a date in format M/D/YYYY, no later than today. If you don't specify ms.date, the date will be updated automatically.
For more details, please refer to the build report.
Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them.
For any questions, please:
- Try searching the learn.microsoft.com contributor guides
- Post your question in the Learn support channel
It is already 14 march in my timezone. |
The system only cares about its timezone. We can either wait a day or back the date up 1 day. |
I don't mind waiting till tomorrow. Will take note of the date in the future. |
#label:"aq-pr-triaged" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you.
#signoff
#sign-off |
Add missing "non-reference" constraint, since
mutable
is not allowed on reference data members. The emptymain
function is removed as it does not serve any purpose.