Author: grarpamp 2012-01-30 23:27:43
Published on: 2012-01-30T23:27:43+00:00
The given context is about warnings generated by the compiler while compiling the code on bsd. It contains the name of the file, line number and a warning message. The first two warnings are of note and should probably be looked at. A little more work after those and it might be possible to use -Wall by default as addressing even some of these would remove tons of lines from the output. There are warnings about unused variables, unused parameters, and unused functions in various files such as net.cpp, script.cpp, bitcoinrpc.cpp, db.cpp, init.cpp, irc.cpp, json/json_spirit_reader_template.h, main.cpp, noui.h, script.h, serialize.h, test/test_bitcoin.cpp, uint256.h, util.cpp, and wallet.cpp. The warnings specify the function names, parameter names, and variable names which are unused.
Updated on: 2023-06-05T02:16:15.829886+00:00