From 77bbe98275b22b5d658b80b96f6d616d10a888ff Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 25 Mar 2016 03:12:02 +0100 Subject: [PATCH] draft first round of operation in test to be implemented.... --- .../diff/tree-manipulation-binding-test.cpp | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/tests/library/diff/tree-manipulation-binding-test.cpp b/tests/library/diff/tree-manipulation-binding-test.cpp index 235771b41..c0ef8afd7 100644 --- a/tests/library/diff/tree-manipulation-binding-test.cpp +++ b/tests/library/diff/tree-manipulation-binding-test.cpp @@ -285,7 +285,7 @@ namespace test{ string key; string val; - operator string() const { return _Fmt{"≺%s∫%s≻"} % key % val; } + operator string() const { return _Fmt{"≺%s∣%s≻"} % key % val; } bool operator== (Data const& o) const { return key==o.key and val==o.val; } bool operator!= (Data const& o) const { return not (*this == o); } }; @@ -312,6 +312,25 @@ namespace test{ ); cout << lib::test::showSizeof(mutator) <