-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fix usage of temporary string #185
Conversation
It reads |
Clicking around the linked page revealed it might be the infamous
I will rebase this commit to re-trigger the CI. |
We're still tweaking the settings on the pool of machines which run unit tests (essential##). Please run the tests locally to make sure they pass--we'll take care of re-queuing the CI tests on your behalf. |
@@ -488,7 +488,7 @@ void StandardCalculatorViewModel::HandleUpdatedOperandData(Command cmdenum) | |||
m_selectedExpressionLastData = L""; | |||
if (ch == 'x') | |||
{ | |||
temp = L'\0'; | |||
temp[0] = L'\0'; |
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.
While you're changing this, let's remove the new and replace it with something better.
Fixes #173