소스 검색

- Removed unused variable
- Removed inline directive (formal arguments are unsupported and only cause compiler noise)

git-svn-id: trunk@17988 -

sergei 14 년 전
부모
커밋
35a2ed9a6c
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      rtl/inc/lnfodwrf.pp

+ 1 - 2
rtl/inc/lnfodwrf.pp

@@ -213,7 +213,6 @@ end;
 function ReadNext() : Longint; inline;
 var
   bytesread : SizeInt;
-  b : Byte;
 begin
   ReadNext := -1;
   if EBufPos >= EBufCnt then begin
@@ -236,7 +235,7 @@ end;
 { Reads the next size bytes into dest. Returns true if successful,
   false otherwise. Note that dest may be partially overwritten after
   returning false. }
-function ReadNext(var dest; size : SizeInt) : Boolean; inline;
+function ReadNext(var dest; size : SizeInt) : Boolean;
 var
   bytesread, totalread : SizeInt;
   r: Boolean;