diff options
| author | Hennadii Stepanov <[email protected]> | 2019-07-07 06:20:19 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2019-07-07 06:20:19 +0300 |
| commit | d003110351568f0f8e69bec445f4ddc3a56396ff (patch) | |
| tree | d87d5c80cab968f1da2e713b53a5d237ede569cd /src/qt/bitcoin.cpp | |
| parent | Merge #15457: Check std::system for -[alert|block|wallet]notify (diff) | |
| download | discoin-d003110351568f0f8e69bec445f4ddc3a56396ff.tar.xz discoin-d003110351568f0f8e69bec445f4ddc3a56396ff.zip | |
Remove unused guard
It is no longer used since switching to autotools build system.
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -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 2fdbcca04..aa8bbab85 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 |