mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-18 22:35:39 +01:00
convert C-style (void) parameter lists to C++ style ()
This commit is contained in:
@@ -586,7 +586,7 @@ int main(int argc, char *argv[])
|
||||
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)
|
||||
// IMPORTANT if it is no longer a typedef use the normal variant above
|
||||
qRegisterMetaType< CAmount >("CAmount");
|
||||
qRegisterMetaType< std::function<void(void)> >("std::function<void(void)>");
|
||||
qRegisterMetaType< std::function<void()> >("std::function<void()>");
|
||||
#ifdef ENABLE_WALLET
|
||||
qRegisterMetaType<WalletModel*>("WalletModel*");
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user