Skip to content

Commit

Permalink
Update big_int.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
1vanK committed Mar 13, 2024
1 parent 8bd8ced commit 1dd42f9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions big_int.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,10 @@ BigInt::BigInt()
magnitude_.push_back(0);
}

#ifdef _DEBUG
static_assert(false, "_DEBUG");
#endif

BigInt::BigInt(int32_t value)
{
positive_ = (value >= 0);
Expand Down

0 comments on commit 1dd42f9

Please sign in to comment.