Re: [sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread Noel Frankinet
Christian Smith a écrit : Gunnar Roth uttered: Hello, i want to use sqlite3 in a sub-project at work. when compiling with warning level 4 with vc6 ( internal philosophy ) , i get over 480 warnings. With warning level 3 there are still 119 left. This leads to problems to convince the project lea

Re: [sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread Teg
Hello Gunnar, You can use this pragma to disable the warnings that don't actually mean anything. #pragma warning (disable: 4786 4666 4100 4786 4146) I debug/develop using VC2005 and release using VC6. C Monday, November 13, 2006, 9:43:02 AM, you wrote: GR> Hello, GR> i want to use sqlite3 in

Re: [sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread Christian Smith
Gunnar Roth uttered: Hello, i want to use sqlite3 in a sub-project at work. when compiling with warning level 4 with vc6 ( internal philosophy ) , i get over 480 warnings. With warning level 3 there are still 119 left. This leads to problems to convince the project lead of the quality of sqlite3

Re: [sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread Clay Dowling
First, I use the pre-built DLL from the SQLite web site, and then use my compiler's library import utility to generate the appropriate import lib. That saves me all the warnings. Second, examine the actual warnings, not just the count. You'll find that a large number of them are warnings about d

Re: [sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread drh
Gunnar Roth <[EMAIL PROTECTED]> wrote: > Hello, > i want to use sqlite3 in a sub-project at work. > when compiling with warning level 4 with vc6 ( internal philosophy ) , i > get over 480 warnings. With warning level 3 there are still 119 left. > This leads to problems to convince the project lead

[sqlite] so many warnings on vc6 with warning level 4

2006-11-13 Thread Gunnar Roth
Hello, i want to use sqlite3 in a sub-project at work. when compiling with warning level 4 with vc6 ( internal philosophy ) , i get over 480 warnings. With warning level 3 there are still 119 left. This leads to problems to convince the project lead of the quality of sqlite3 ( which i do not doubt