Skip to content

Commit

Permalink
chore(BigNum): Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
macmade committed Nov 9, 2024
1 parent 9284f51 commit 0331caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SRPXX/include/SRPXX/BigNum.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ namespace SRP
BigNum & operator =( int64_t value );

bool operator ==( const BigNum & o ) const;
bool operator ==( int64_t value ) const;
bool operator ==( int64_t value ) const;
bool operator ==( const std::string & value ) const;

bool operator !=( const BigNum & o ) const;
bool operator !=( int64_t value ) const;
bool operator !=( int64_t value ) const;
bool operator !=( const std::string & value ) const;

std::string toString( StringFormat format = StringFormat::Auto ) const;
Expand Down

0 comments on commit 0331caf

Please sign in to comment.