ayaankhan98 / bigINT

Efficient OpenSource Big Integer(Library) Support for C++
Boost Software License 1.0
6 stars 26 forks source link

Unnecessary copies #51

Closed ufrshubham closed 4 years ago

ufrshubham commented 4 years ago

Many of the operator overloads are taking in arguments by value. This will cause unnecessary copies of the objects. Better to convert them to const ref wherever possible.

ufrshubham commented 4 years ago

Submitting a PR for this. @ayaankhan98 you can assign this to me.