robinpaulson / asperes

An image-to-audio/audio-to-image converter, in a similar vein to "Metasynth". A fork of ARSS, which is discontinued
GNU General Public License v2.0
0 stars 1 forks source link

multiple "function declared but never defined" warnings #3

Closed robinpaulson closed 2 years ago

robinpaulson commented 2 years ago

Similar to this, ~45 of them:

In file included from ../src/sound_io.c:19: ../src/util.h:30:20: warning: inline function ‘fwrite_le_word’ declared but never defined 30 | extern inline void fwrite_le_word(uint32_t w, FILE * file);

Apparently they're only warnings, but they sound more serious

https://stackoverflow.com/questions/1421666/qt-creator-inline-function-used-but-never-defined-why#1421730

robinpaulson commented 2 years ago

Fixed by removing inline from all functions.