Re: [SMAUG] Compiling troubles with the Ratings Snippet by Aurora
Re: [SMAUG] Compiling troubles with the Ratings Snippet by Aurora
It's not whiny. Compilers are designed to save people from making
unnecessary mistakes. If you'd like to see less warnings, remove the
-Wall flag from your makefile. Optionally you can disable certain
warnings with compiler flags.
-Wno-implicit: ignore implicit declarations|
-Wnomissing-prototype: Ignore the fact that a global function isn't
defined without a previous prototype declaration. |The aim of this
warning is to detect global functions that fail to be declared in header
files.
And a type mismatch error is fatal in any C/C++ compiler.
Conner Destron wrote:
ok, that seems to have solved all of those errors but now I'm get
something about a type mismatch error with a previously implicitly
declared save_scores.... why's gcc so damn whiney?
-=Conner=-