POV-Ray : Newsgroups : povray.programming : Win32 Console POV-Ray : Re: Win32 Console POV-Ray Server Time
28 Jul 2024 18:20:24 EDT (-0400)
  Re: Win32 Console POV-Ray  
From: Ron Parker
Date: 4 Nov 1999 08:16:00
Message: <slrn8231o3.v8.ron.parker@ron.gwmicro.com>
On Wed, 03 Nov 1999 22:09:22 -0600, Thorsten Froehlich wrote:
>In article <3820f651@news.povray.org> , "Chris Jeppesen" 
><chr### [at] digiquillcom> wrote:
>
>> And I got rid of 607 warnings with a simple #define float double
>
>I presume you are using Visual C?  Just tell it to ignore the possible loss
>of "data" warning. 

To do this, add one or more of the lines below to the appropriate place 
in config.h.

/* disable truncation warning */
#pragma warning(disable: 4305)

/* disable precision warning */
#pragma warning(disable: 4244)

/* disable signed/unsigned warning */
#pragma warning(disable: 4018)


-- 
These are my opinions.  I do NOT speak for the POV-Team.
The superpatch: http://www2.fwi.com/~parkerr/superpatch/
My other stuff: http://www2.fwi.com/~parkerr/traces.html


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.