diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-07-07 06:20:19 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-07-07 06:20:19 +0300 |
commit | d003110351568f0f8e69bec445f4ddc3a56396ff (patch) | |
tree | d87d5c80cab968f1da2e713b53a5d237ede569cd /src | |
parent | 8c69fae94410f54bad13be0f34d54370fddbf4b3 (diff) |
Remove unused guard
It is no longer used since switching to autotools build system.
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 2fdbcca043..aa8bbab85d 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -413,7 +413,6 @@ static void SetupUIArgs() gArgs.AddArg("-uiplatform", strprintf("Select platform to customize UI for (one of windows, macosx, other; default: %s)", BitcoinGUI::DEFAULT_UIPLATFORM), true, OptionsCategory::GUI); } -#ifndef BITCOIN_QT_TEST int GuiMain(int argc, char* argv[]) { #ifdef WIN32 @@ -593,4 +592,3 @@ int GuiMain(int argc, char* argv[]) } return rv; } -#endif // BITCOIN_QT_TEST |