summaryrefslogtreecommitdiffhomepage
path: root/example/simple_example/example.cpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-24 05:40:10 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-24 05:40:10 +0100
commit7c56a75c9a86d6d646f2290ae5a62c811935fb7a (patch)
tree33e415984d1b949bc8d8149bf478ad6d4a79a27a /example/simple_example/example.cpp
parent5f4b99bbaff84b838a63e5fcbeae283edc51444f (diff)
chore: examples: ran format command.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
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;