Top "Warnings" questions

A warning is often issued on recognizing a potential high-risk situation, a probable misunderstanding, degraded service or imminent failure.

How to use _CRT_SECURE_NO_WARNINGS

I have compile error in my simple MFC window application generated from wizard with several lines of code: error C4996: …

c++ visual-c++ visual-studio-2012 warnings
Warning message: In `...` : invalid factor level, NA generated

I don't understand why I got this warning message. > fixed <- data.frame("Type" = character(3), "Amount" = numeric(3)) > …

r warnings r-faq
libpng warning: iCCP: known incorrect sRGB profile

I'm trying to load a PNG image using SDL but the program doesn't work and this error appears in the …

c++ warnings sdl rgb libpng
PHP - warning - Undefined property: stdClass - fix?

I get this warning in my error logs and wanted to know how to correct this issues in my code. …

php object warnings
numpy division with RuntimeWarning: invalid value encountered in double_scalars

I wrote the following script: import numpy d = numpy.array([[1089, 1093]]) e = numpy.array([[1000, 4443]]) answer = numpy.exp(-3 * d) answer1 = numpy.…

python numpy warnings
Reference - What does this error mean in PHP?

What is this? This is a number of answers about warnings, errors, and notices you might encounter while programming PHP …

php debugging error-handling warnings custom-error-handling
Headers and client library minor version mismatch

In PHP I'm getting the following warning whenever I try to connect to a database (via mysql_connect) Warning: mysql_…

php ubuntu mysqli warnings
'invalid value encountered in double_scalars' warning, possibly numpy

As I run my code I get these warnings, always in groups of four, sporadically. I have tried to locate …

python numpy warnings matplotlib
How do I best silence a warning about unused variables?

I have a cross platform application and in a few of my functions not all the values passed to functions …

c++ gcc warnings gcc-warning
How to suppress warnings globally in an R Script

I have a long R script that throws some warnings, which I can ignore. I could use suppressWarnings(expr) for …

r warnings