colobot/src/tools
AbigailBuccaneer ea64edaa0b Compile with -Wmissing-declarations
-Wmissing-declarations enforces that every function (except for static
functions) must be declared separately before it's defined. This
essentially enforces that every function must be either static, or
declared in a header elsewhere.

This helps the optimizer, as it can do a better job of inlining if it
knows that a function won't be used outside of a given file. It also
helps -Wunused-function (which is enabled by -Wall) find more unused
functions.

Note that Clang spells this option -Wmissing-prototypes, which
confusingly is the name of a related but different warning option under
GCC.
2018-04-21 16:49:27 +01:00
..
CMakeLists.txt Refactor model-related code 2015-07-09 21:37:04 +02:00
README.txt Fixed code formatting 2013-05-27 10:19:16 +02:00
convert_model.cpp Compile with -Wmissing-declarations 2018-04-21 16:49:27 +01:00

README.txt

/**
 * \dir tools
 * \brief Various tools (separate programs)
 */