https://svn.lrde.epita.fr/svn/oln/trunk/milena/sandbox
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Remove a bug file.
* bugs/algebra_vec_ne_op.cc: Remove. Bug fixed.
algebra_vec_ne_op.cc | 19 -------------------
1 file changed, 19 deletions(-)
Index: bugs/algebra_vec_ne_op.cc
--- bugs/algebra_vec_ne_op.cc (revision 3733)
+++ bugs/algebra_vec_ne_op.cc (working copy)
@@ -1,19 +0,0 @@
-/// Do not compile
-
-
-# include <mln/algebra/vec.hh>
-int main()
-{
- using namespace mln::algebra;
- vec<3, float> a, b;
-
- // Do NOT work
- bool c = (a != b);
-
- // Work
- c = !(a == b);
-
- // Work
- c = (a == b);
-}
-