Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
2answers
36k views

warning: incompatible implicit declaration of built-in function ‘xyz’

I'm getting a number of these warnings when compiling a few binaries: warning: incompatible implicit declaration of built-in function ‘strcpy’ warning: incompatible implicit declaration of built-in ...
14
votes
5answers
1k views

How to suppress GCC warnings from library headers?

I have a project that uses log4cxx, boost, etc. libraries whose headers generate lots of (repetitive) warnings. Is there a way to suppress warnings from library includes (i.e. #include ...
10
votes
3answers
253 views

Why is there no gcc/g++ warning for unused temporaries?

Consider the following code : void ListenerImpl::attach(boost::shared_ptr<ISubscriber> subscriber) { boost::unique_lock<boost::mutex>(mtx); subscribers.push_back(subscriber); } ...
10
votes
5answers
8k views

Pedantic gcc warning: type qualifiers on function return type

When I compiled my C++ code with GCC 4.3 for the first time, (after having compiled it successfully with no warnings on 4.1, 4.0, 3.4 with the -Wall -Wextra options) I suddenly got a bunch of errors ...
8
votes
3answers
1k views

unused parameter warnings in C code

What's the best way to suppress "unused parameter" warning in C code. For instance, Bool NullFunc(const struct timespec *when, const char *who, unsigned short format, void *data, int len) { ...
8
votes
2answers
202 views

What is the explanation for “warning: assuming that the loop is not infinite”

I had just taken the decision to change as many variables from unsigned to int and upon recompiling the code in question, was greeted by this warning message: freespace_state.c:203: warning: assuming ...
7
votes
5answers
368 views

How to make gcc warn about passing wrong enum to a function

gcc doesn't seem to produce a warning with the following code. How can I get it to produce a warning? typedef enum { REG8_A, REG8_B, REG8_C }REG8; typedef enum { REG16_A, ...
7
votes
5answers
487 views

Why does a “function name” evaluate to true in C and how to get warned on it

I recently stumbled across the following behaviour of gcc 3.2.2 writing a c program: In an if statement I forgot the braces of a function and wrote: if(myFunc)... instead of if(myFunc())... This ...
6
votes
2answers
349 views

How to eliminate external lib/third party warnings in GCC

In the software project I'm working on, we use certain 3rd party libraries which, sadly, produce annoying gcc warnings. We are striving to clean all code of warnings, and want to enable the ...
6
votes
2answers
258 views

Why doesn't GCC produce a warning when assigning a signed literal to an unsigned type?

Several questions on this website reveal pitfalls when mixing signed and unsigned types and most compilers seem to do a good job about generating warnings of this type. However, GCC doesn't seem to ...
5
votes
3answers
556 views

Wunused-but-set-variable warning treatment

I have the following code, and while compiling it with gcc-4.6 I get warning: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] #if defined (_DEBUG_) #define ASSERT ...
5
votes
1answer
289 views

Why does boost::optional fail for classes inheriting virtual functions

boost::optional<> works perfect for simple data types but as soon as used for a class inheriting from a class implementing an interface it fails when strict aliasing is enabled. Example: #include ...
5
votes
2answers
521 views

MSVC equivalent of __attribute__ ((warn_unused_result))?

I'm finding __attribute__ ((warn_unused_result)) to be very useful as a means of encouraging developers not to ignore error codes returned by functions, but I need this to work with MSVC as well as ...
5
votes
3answers
170 views

A variable not detected as not used

I am using g++ 4.3.0 to compile this example : #include <vector> int main() { std::vector< int > a; int b; } If I compile the example with maximum warning level, I get a warning ...
5
votes
2answers
185 views

Compiler detection of returning reference to local variable

I've just been bitten by a nasty undefined behavior due the returning a reference to a local variable. We know it's evil, and generally the compiler prints a nice warning to tell us so... well gcc ...
5
votes
5answers
2k views

Make one gcc warning an error?

I get this warning from GCC: warning: cannot pass objects of non-POD type 'class Something' through '...'; call will abort at runtime It's pretty deadly, especially since it calls an abort. Why ...
4
votes
4answers
178 views

Insufficient control flow analysis of enum switch in GCC

In the following C++ code: typedef enum { a, b, c } Test; int foo(Test test) { switch (test) { case a: return 0; case b: return 1; case c: return 0; } } a warning ...
4
votes
2answers
159 views

How can I suppress g++ deprecation warnings in OCaml compilation when linking with C++ libraries?

When compiling an OCaml project which links against libraries requiring the C++ standard library (e.g. LLVM's OCaml bindings) using the -cc g++ argument to ocamlc with GCC >= 4.4 generates extremely ...
4
votes
2answers
250 views

Forcing GCC 4.x to treat -Wreturn-type as an error without enabling -Werror?

Suppose we have the following code: #if !defined(__cplusplus) # error This file should be compiled as C++ #endif #include <stdio.h> #include <string> //#define USE_CXX_CLASS #ifdef ...
4
votes
1answer
494 views

Why are no strict-aliasing warnings generated for this code?

I have the following code: struct A { short b; }; struct B { double a; }; void foo (struct B* src) { struct B* b = src; struct A* a = (struct A*)src; b->a = sin(rand()); ...
4
votes
6answers
3k views

gcc warning: braces around scalar initializer

I have look-up-table as defined below and I'm making use of GCC. When I compile I get warnings as warning: braces around scalar initializer What does this warning mean? How should I initialize this ...
4
votes
5answers
113 views

doubt regarding operations on “int” flavors

I am having following doubt regarding "int" flavors (unsigned int, long int, long long int). When we do some operations(* , /, + , -) between int and its flavors (lets say long int) in 32bit system ...
4
votes
4answers
370 views

Fixing “comparison is always false …” warning in GCC

I'm having a problem which I'm sure is simple to fix but I'm at a loss... I have a template that performs the following code: T value = d; if ( std::numeric_limits< T >::is_signed ) { ...
3
votes
5answers
156 views

How can I tell gcc to warn (or fail) on switch/case statements without a break?

I have a complicated switch statement, and I forgot to put a break at the end of one of the cases. This is quite legal, and as a result I had a fall-through to the next case. Is there any way to ...
3
votes
1answer
154 views

how to correctly address -Wcast-qual

I have a variable k of type const char *, and a function in glib with the prototype void g_hash_table_replace(GHashTable *hash_table, gpointer key, ...
3
votes
5answers
488 views

Remove first char of string C

Im trying to remove the first char of the string and keep the remainder, my current code doesnt compile and im confused on how to fix it. My code: char * newStr (char * charBuffer) { int len = ...
3
votes
4answers
1k views

Porting C source code written for 32 to 64 bit

The C source codes that I am trying to port into 64 bit runs without any warning in the 32 bit environment. When I compile in 64 bit linux environment with the compile gcc (Ubuntu 4.4.1-4ubuntu9) ...
3
votes
1answer
319 views

Why assignment of double to int does not trigger gcc warnings?

int i = 3.1 / 2 does not cause any warnings,even with -Wall option.Sometimes,I would like to know where precision lose.Why gcc does not support this warning,while msvc support this one? thanks. ...
3
votes
3answers
551 views

C: warns about implicit long to int conversion

I was wondering whether there is a way to tell the compiler (I'm on gcc version 4.1.2 20080704 (Red Hat 4.1.2-46) or icc 11.1) to throw a warning whenever a long-to-int implicit conversion takes ...
3
votes
3answers
684 views

Is there any way to get readable gcc error and warning output at the command line?

For some long errors, the gcc output is dense and has lots of line-wrapping etc. Especially when errors are subtle, it can take me 10-30 seconds of squinting to parse it with my eyes. I've taken to ...
2
votes
3answers
101 views

Is there a way to get gcc or clang to warn on a missing 'else'?

I'd like to have the compiler warn me if I'm not handling every if statement's else condition. Does this exist in either clang or gcc? To clarify, I'm not trying to have this be on for all of my ...
2
votes
2answers
312 views

GCC warning “incompatible implicit declaration of built-in function ‘printf’” under Mac OS X Snow Leopard

After a very long time away from C programming, I've decided to try and get familiar with it again. I am trying to compile a hello.c program but am having problems. Here's the code: #include ...
2
votes
1answer
44 views

Enabling All GCC Warnings

I'm trying to get all the warnings when compiling a C source with GCC, but I can't seem to be able to do that. I compile using gcc file.c -o file -Wextra And I don't get all the warnings I am ...
2
votes
1answer
92 views

-Wall without -Wreturn-type

According to the GCC manual, the -Wreturn-type options is enabled with -Wall. However, I can't find a proper way to disable it while keeping the rest of -Wall enabled. Consider this code: func() {} ...
2
votes
5answers
1k views

warning: variable set but not used [-Wunused-but-set-variable]

I have been getting following warning while compiling the C source code in the gcc 4.6.1. warning: variable set but not used [-Wunused-but-set-variable] I refered to this link Wunused but could ...
2
votes
1answer
315 views

GCC warning: ISO C does not permit named variadic macros

Using the following command gcc -c -Wall -Wextra -pedantic -ansi -std=c99 -fstack-protector-all -fstack-check -O3 root.c -o rootTESTOBJECT I get the compiler warning root.h:76:22: warning: ...
2
votes
2answers
73 views

How to enable a specific gcc warnings for a specific directory or file? [closed]

Possible Duplicate: Selectively disable GCC warnings for only part of a translation unit? How to enable a specific gcc warnings for a specific directory or file ? I want to enable ...
2
votes
0answers
146 views

Code::Blocks - warnings disappear when running program

I'm using Code::Blocks 10.05 (currently on Windows). When I run the program (Ctrl + F10), all the warnings in the build log disappear, so the first line is "Checking for existence...". So when I build ...
2
votes
2answers
130 views

Forcing VS2008 to issue a GCC warning similar to “warning: comparison between signed and unsigned integer expressions”

Along the same lines as to what was described in conversion to ‘size_t’ from ‘int’ may change the sign of the result - GCC , C, I would instead like to insure that the warning I receive under GCC ...
2
votes
1answer
138 views

Undefined behavior or false positive

I've (essentially) come across the following in the wild x = x = 5; which apparently compiles cleanly under earlier version of gcc (generates a warning under gcc 4.5.1). As far as I can tell the ...
2
votes
4answers
935 views

Suppressing “ISO C99 requires rest arguments to be used”

Consider the following two macros: #define PNORM( v, s, ... ) { \ if( VERBOSITY_CHECK( v ) ) { \ if( ( errno = pthread_mutex_lock(&server.output_mutex) ) ) { \ PERROR_LOCKFREE( ...
2
votes
4answers
512 views

Casting to void doesn't remove warn_unused_result error

In a test, I'm discarding anything from stderr since it clutters the output of the test case. I'm using the following code: freopen("/dev/null", "w", stderr); When compiling with -Wall -Werror, I ...
2
votes
2answers
170 views

Why gcc4 warn and how to avoid it

I have a function declared as: void event_add_card (EventAddr addr, EventType type, unsigned char card); and union typedef union EventData { float money; /**< money info ...
2
votes
2answers
3k views

C warning implicit declaration of function 'exit'

This is my warning. implicit declaration of function 'exit' How i can remove it. i am using linux & gcc compiler.
2
votes
1answer
2k views

Is there an gcc/Xcode pragma to suppress warnings?

Is there a #pragma to have gcc/Xcode suppress specific warnings, similar to Java's @SuppressWarning annotation? I compile with -Wall as a rule, but there are some situations where I'd like to just ...
2
votes
3answers
633 views

How to suppress the “enumeral and non-enumeral type in conditional expression” warning in GCC

I keep getting this warning from a third-party library (which I don't want to debug), so I'd really appreciate a way to suppress this specific warning. Google failed me, so here I am.
2
votes
5answers
2k views

Disable gcc warning for incompatible options

I'm curious if there is an option to disable gcc warnings about a parameter not being valid for the language being compiled. Ex: cc1: warning: command line option "-Wno-deprecated" is valid for ...
2
votes
4answers
840 views

How do I turn off erroneous float/long error messages from gcc

I recently was making a change to to our codebase from float to long for some variables, and discovered that there were no error messages generated by the compiler in areas I knew were still wrong. ...
1
vote
2answers
53 views

WARNING: “implicit declaration of function '…' is invalid in C99”. Please help me

I'm getting this warning when I'm trying to compare RGB components of two UIColors In .h file, I declared this -(int) ColorDiff:(UIColor *) color1 :(UIColor *)color2; In .m file - (int) ...
1
vote
2answers
44 views

How to make gcc/clang warn about missing breaks in switch statements

Is there any way to make gcc or clang warn about missing breaks in switch statements? Specifically, I almost always want case statements to end with breaks, and it would be great it I could get the ...

1 2 3