소스 검색

* Converted user defined warnings to comments.

git-svn-id: trunk@9545 -
yury 17 년 전
부모
커밋
de9af7191b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      rtl/win32/system.pp

+ 2 - 2
rtl/win32/system.pp

@@ -446,7 +446,7 @@ function Dll_entry(const info : TEntryInformation) : longbool; [public,alias:'_F
        DLL_THREAD_ATTACH :
          begin
            inclocked(Thread_count);
-{$warning Allocate Threadvars !}
+{ Allocate Threadvars ?!}
            if assigned(Dll_Thread_Attach_Hook) then
              Dll_Thread_Attach_Hook(DllParam);
            Dll_entry:=true; { return value is ignored }
@@ -456,7 +456,7 @@ function Dll_entry(const info : TEntryInformation) : longbool; [public,alias:'_F
            declocked(Thread_count);
            if assigned(Dll_Thread_Detach_Hook) then
              Dll_Thread_Detach_Hook(DllParam);
-{$warning Release Threadvars !}
+{ Release Threadvars ?!}
            Dll_entry:=true; { return value is ignored }
          end;
        DLL_PROCESS_DETACH :