diff --git a/boxedcpp/bootstrap.hpp b/boxedcpp/bootstrap.hpp index f07940a..116b191 100644 --- a/boxedcpp/bootstrap.hpp +++ b/boxedcpp/bootstrap.hpp @@ -18,7 +18,7 @@ Ret subtract(P1 p1, P2 p2) template Ret divide(P1 p1, P2 p2) { - return p1 - p2; + return p1 / p2; }