schalkdaniel/compboost

Passing integer by value instead of by reference

SGolbert opened this issue · 1 comments

Dereferencing a reference or pointer to int is actually slower than just passing the int by value. The difference in speed would be minimal for compboost, but it's good to take it into consideration for the future.

Done in #322