Skip to content

Commit

Permalink
fix(network): incorrect singleton code in NetworkClient.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Mairon1206 committed Aug 11, 2024
1 parent 9c9f6e5 commit 5d38cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Infrastructure/Network/NetworkClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using Task = net::awaitable<T>;
class NetworkClient {
public:
NetworkClient(const NetworkClient&) = delete;
NetworkClient& operator==(const NetworkClient&) = delete;
NetworkClient& operator=(const NetworkClient&) = delete;

Task<Result<LoginResEntity>> loginViaSastLink(std::string const& code);

Expand Down

0 comments on commit 5d38cef

Please sign in to comment.