diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-03-01 20:50:33 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-03-01 20:51:05 +0100 |
| commit | 90a0aed51194ad82da8e011b96f9561c685e40b7 (patch) | |
| tree | 422b2bb0699cdc1a8753441c47bd08cd5eaf0a13 /src/test | |
| parent | Merge #12546: [docs] Minor improvements to Compatibility Notes (diff) | |
| parent | Remove useless string initialization. (diff) | |
| download | discoin-90a0aed51194ad82da8e011b96f9561c685e40b7.tar.xz discoin-90a0aed51194ad82da8e011b96f9561c685e40b7.zip | |
Merge #12182: Remove useless string initializations
19ac86e Remove useless string initialization. (Alin Rus)
Pull request description:
Tree-SHA512: 4273dd7e8ed083cc9d05fc70967465e405085b630c000f829648dd44dd0cfe2249f6af1498b02f54b4ca73833130b802488bae8eca0d4d0b803a6f0122b19e8f
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/net_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/net_tests.cpp b/src/test/net_tests.cpp index ca57f5890..e03234060 100644 --- a/src/test/net_tests.cpp +++ b/src/test/net_tests.cpp @@ -171,7 +171,7 @@ BOOST_AUTO_TEST_CASE(cnode_simple_test) ipv4Addr.s_addr = 0xa0b0c001; CAddress addr = CAddress(CService(ipv4Addr, 7777), NODE_NETWORK); - std::string pszDest = ""; + std::string pszDest; bool fInboundIn = false; // Test that fFeeler is false by default. |