python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to disable a warning in code generated by a maven plugin?
I am generating sources as part of a Java 17 maven build using version 5.4.0 (latest release as of 2022-04-05) of openapi-generator-maven-plugin. Works fine.
Unfortunately the generated source uses a...
user18619318
Votes: 0
Answers: 0
Suppress c# warnings for all projects on user level
Is there any possibility to switch warnigs off on an individual, site-specific (not project-related) level?
Background: most warnings are null reference warnings on code that is already tested. In the...

SDG
Votes: 0
Answers: 1
How to disable implicit conversion changes signedness warning in CMAKE
Does anybody know if there is a way to disable this kind of warning given by clang in CMAKE please ?
std::vector<float> v{1.f, 2.f, 1.f};
int i = 1;
float foo = v[i]; // Here we get the warning,...
Jojolastiti
Votes: 0
Answers: 0
gcc c++ how to disable the `-Wno-error=permissive` error when `-fpermissive` and `-Werror` are both on?
For this struct and function:
typedef struct data_s
{
int i1;
int i2;
} data_t;
void print_data_passed_by_ptr(const data_t *data)
{
printf(" i1 = %i\n"
" i2 = ...
Gabriel Staples
Votes: 0
Answers: 1