Browse Source

* 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 years ago
parent
commit
113f7593be
1 changed files with 2 additions and 2 deletions
  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}