From 19582e5679b742fa0578eb7e39285ab27055b843 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Fri, 5 Jun 2009 23:56:57 +0000 Subject: [PATCH] Fixed / operator --- boxedcpp/bootstrap.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxedcpp/bootstrap.hpp b/boxedcpp/bootstrap.hpp index f07940a1..116b191a 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; }