diff --git a/BeefLibs/corlib/src/Globalization/DateTimeFormat.bf b/BeefLibs/corlib/src/Globalization/DateTimeFormat.bf index 0921a5f0..895fee8f 100644 --- a/BeefLibs/corlib/src/Globalization/DateTimeFormat.bf +++ b/BeefLibs/corlib/src/Globalization/DateTimeFormat.bf @@ -386,7 +386,7 @@ namespace System { // // Find first "d". - for (i = index - 1; i >= 0 && format[i] != patternToMatch; i--) { /*Do nothing here */ }; + for (i = index - 1; i >= 0 && format[i] != patternToMatch; i--) { /*Do nothing here */ } if (i >= 0) { // Find a "d", so look back to see how many "d" that we can find. @@ -409,7 +409,7 @@ namespace System { // // Find first "d" - for (i = index + tokenLen; i < format.Length && format[i] != patternToMatch; i++) { /* Do nothing here */ }; + for (i = index + tokenLen; i < format.Length && format[i] != patternToMatch; i++) { /* Do nothing here */ } if (i < format.Length) { repeatVal = 0; diff --git a/IDE/src/ui/AutoComplete.bf b/IDE/src/ui/AutoComplete.bf index bdf99469..f6543fe7 100644 --- a/IDE/src/ui/AutoComplete.bf +++ b/IDE/src/ui/AutoComplete.bf @@ -2441,7 +2441,7 @@ namespace IDE.ui sourceEditWidgetContent.PersistentTextPositions.Remove(persistentTextPositon); delete persistentTextPositon; } - }; + } mTargetEditWidget.Content.EnsureCursorVisible(); if ((insertType != null) && (insertText.Length > 0)) diff --git a/IDE/src/ui/BinaryDataWidget.bf b/IDE/src/ui/BinaryDataWidget.bf index 5d5aa739..c6aef7dd 100644 --- a/IDE/src/ui/BinaryDataWidget.bf +++ b/IDE/src/ui/BinaryDataWidget.bf @@ -1292,7 +1292,7 @@ namespace IDE.ui } return showBorder; - }; + } bool leftBorder = neighborCoverageFunc(-1); bool rightBorder = neighborCoverageFunc(1); @@ -1344,7 +1344,7 @@ namespace IDE.ui showBorder = !neighborEntry.mIsSelected; } return showBorder; - }; + } bool leftBorder = neighborCoverageFunc(-1); bool rightBorder = neighborCoverageFunc(1);