소스 검색

* FPC_USE_WIN64_SEH is only defined if target is Win64, so another check for win64 is redundant.

git-svn-id: trunk@23353 -
sergei 12 년 전
부모
커밋
113f7593be
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      rtl/win/sysosh.inc

+ 2 - 2
rtl/win/sysosh.inc

@@ -79,6 +79,6 @@ type
 var
   LibModuleList: PLibModule = nil;
 
-{$if defined(win64) and defined(FPC_USE_WIN64_SEH)}
+{$ifdef FPC_USE_WIN64_SEH}
 procedure _fpc_local_unwind(frame,target: Pointer);compilerproc;
-{$endif}
+{$endif FPC_USE_WIN64_SEH}