Skip to content

Commit

Permalink
fbc: remove RSET overload attribute (like LSET)
Browse files Browse the repository at this point in the history
- there should not be any reason to have RSET as overloaded
  since RSET is a reserved keyword handled by the parser
  • Loading branch information
jayrm committed Mar 24, 2024
1 parent 0da946b commit 86ccd4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/compiler/rtl-string.bas
Expand Up @@ -666,11 +666,11 @@
( typeAddrOf( typeSetIsConst( FB_DATATYPE_WCHAR ) ), FB_PARAMMODE_BYVAL, FALSE ) _
} _
), _
/' sub fb_StrRset overload( byref dst as string, byref src as const string ) '/ _
/' sub fb_StrRset( byref dst as string, byref src as const string ) '/ _
( _
@FB_RTL_STRRSET, NULL, _
FB_DATATYPE_VOID, FB_FUNCMODE_FBCALL, _
NULL, FB_RTL_OPT_OVER, _
NULL, FB_RTL_OPT_NONE, _
2, _
{ _
( FB_DATATYPE_STRING, FB_PARAMMODE_BYREF, FALSE ), _
Expand All @@ -681,7 +681,7 @@
( _
@FB_RTL_WSTRRSET, NULL, _
FB_DATATYPE_VOID, FB_FUNCMODE_FBCALL, _
NULL, FB_RTL_OPT_OVER or FB_RTL_OPT_NOQB, _
NULL, FB_RTL_OPT_NONE or FB_RTL_OPT_NOQB, _
2, _
{ _
( typeAddrOf( FB_DATATYPE_WCHAR ), FB_PARAMMODE_BYVAL, FALSE ), _
Expand Down

0 comments on commit 86ccd4d

Please sign in to comment.