mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
[Qt] remove std namespace polution from code
This commit is contained in:
parent
ed789ceade
commit
dca6040a86
5 changed files with 11 additions and 20 deletions
|
|
@ -19,8 +19,6 @@
|
|||
#include <QDebug>
|
||||
#include <QSslCertificate>
|
||||
|
||||
using namespace std;
|
||||
|
||||
class SSLVerifyError : public std::runtime_error
|
||||
{
|
||||
public:
|
||||
|
|
@ -49,7 +47,7 @@ bool PaymentRequestPlus::parse(const QByteArray& data)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool PaymentRequestPlus::SerializeToString(string* output) const
|
||||
bool PaymentRequestPlus::SerializeToString(std::string* output) const
|
||||
{
|
||||
return paymentRequest.SerializeToString(output);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue