From 85477d8bc818b6c1512c0ad3f4a66b7b354d8059 Mon Sep 17 00:00:00 2001 From: Lexikos Date: Sun, 27 Aug 2023 09:10:29 +1000 Subject: [PATCH] Remove obsolete comments --- source/script.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/script.cpp b/source/script.cpp index 1790b3416..f924e3153 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -5663,10 +5663,6 @@ ResultType Script::ParseFatArrow(DerefList &aDeref, LPTSTR aPrmStart, LPTSTR aPr ResultType Script::DefineFunc(LPTSTR aBuf, bool aStatic, bool aIsInExpression) // Returns OK or FAIL. -// Caller has already called ValidateName() on the function, and it is known that this valid name -// is followed immediately by an open-paren. aFuncExceptionVar is the address of an array on -// the caller's stack that will hold the list of exception variables (those that must be explicitly -// declared as either local or global) within the body of the function. { LPTSTR param_end, param_start = _tcschr(aBuf, '('); // Caller has ensured that this will return non-NULL. int insert_pos;