diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-16 16:30:38 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-06-16 17:42:54 +0200 |
commit | 09eb201b1b3ed808e5167245149f5635d4eaf6f9 (patch) | |
tree | 0fc95f43c7355321cbd2b79603edfdcea42e962d /src/qt/paymentrequestplus.h | |
parent | 807691ca96a1a4b0655f6ea80b721b940dd29a39 (diff) |
Remove `using namespace std` from header file
It's considered bad form to import things into the global namespace in a
header. Put it in the cpp files where it is needed instead.
Diffstat (limited to 'src/qt/paymentrequestplus.h')
-rw-r--r-- | src/qt/paymentrequestplus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/paymentrequestplus.h b/src/qt/paymentrequestplus.h index 8c126b1fad..3c4861a4d4 100644 --- a/src/qt/paymentrequestplus.h +++ b/src/qt/paymentrequestplus.h @@ -24,7 +24,7 @@ public: PaymentRequestPlus() { } bool parse(const QByteArray& data); - bool SerializeToString(string* output) const; + bool SerializeToString(std::string* output) const; bool IsInitialized() const; QString getPKIType() const; |