mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-31 03:50:02 -07:00
fix: redundant semicolons (#230)
### Description of the changes: - Remove redundant semicolons in: - [x] UnitConverter.cpp - [x] DateCalculator.xaml.cpp - [x] CopyPasteManagerTest.cpp ### How changes were validated: - Manual
This commit is contained in:
parent
140a5b3b21
commit
a98cb50a70
3 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
#include "pch.h"
|
||||
|
@ -34,7 +34,7 @@ namespace CalculatorUnitTests
|
|||
|
||||
#define ASSERT_NEGATIVE_TESTCASES(func, dataSet) \
|
||||
{\
|
||||
int size = sizeof(dataSet)/sizeof(*dataSet);;\
|
||||
int size = sizeof(dataSet)/sizeof(*dataSet);\
|
||||
while(--size)\
|
||||
{\
|
||||
VERIFY_ARE_EQUAL(func(dataSet[size]), StringReference(L"NoOp"));\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue