From 7ab81a310fdd4f2196034eaecb1d03fbd4ef203c Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 1 Dec 2024 09:35:32 +1100 Subject: Code format: no space in -1. --- src/Document.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Document.cxx b/src/Document.cxx index 41a1c3414..d30cb50cf 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -2846,7 +2846,7 @@ Sci::Position Document::BraceMatch(Sci::Position position, Sci::Position /*maxRe const unsigned char chBrace = CharAt(position); const unsigned char chSeek = BraceOpposite(chBrace); if (chSeek == '\0') - return - 1; + return -1; const int styBrace = StyleIndexAt(position); int direction = -1; if (chBrace == '(' || chBrace == '[' || chBrace == '{' || chBrace == '<') @@ -2872,7 +2872,7 @@ Sci::Position Document::BraceMatch(Sci::Position position, Sci::Position /*maxRe } position += direction; } - return - 1; + return -1; } /** -- cgit v1.2.3