summaryrefslogtreecommitdiffhomepage
path: root/example/simple_example/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'example/simple_example/example.cpp')
-rw-r--r--example/simple_example/example.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/simple_example/example.cpp b/example/simple_example/example.cpp
index fdcd638..70c073a 100644
--- a/example/simple_example/example.cpp
+++ b/example/simple_example/example.cpp
@@ -17,9 +17,9 @@ using namespace boost;
int main()
{
- auto rope = tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog");
+ auto rope = tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog");
auto new_elem = std::make_unique<tproc::crope>(", and Jumps again.");
-
+
rope.concat(new_elem.get());
std::cout << *++rope << std::endl;