Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dmake / winnt / microsft / optoff.h
blob7dd3cb8395725518e643efdf8cb1de921beb2bc4
1 /* RCS $Id: optoff.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $
2 --
3 -- SYNOPSIS
4 -- Turn off microsoft loop optimization.
5 --
6 -- DESCRIPTION
7 -- This is broken in some pre 600 compilers so just turn it off.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
25 #if _MSC_VER < 600
26 # pragma loop_opt(off)
27 #endif