Fixed / operator

This commit is contained in:
Jason Turner
2009-06-05 23:56:57 +00:00
parent 4cf95bbf9c
commit 19582e5679

View File

@@ -18,7 +18,7 @@ Ret subtract(P1 p1, P2 p2)
template<typename Ret, typename P1, typename P2>
Ret divide(P1 p1, P2 p2)
{
return p1 - p2;
return p1 / p2;
}