From 490948a0d52a3ad7b3f94525a982fc7012d06011 Mon Sep 17 00:00:00 2001
From: fujuntang <fujuntang@smartai.com>
Date: 星期二, 30 十一月 2021 08:35:51 +0800
Subject: [PATCH] Fix the topic parsing issue.
---
test/sole_demo.cpp | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/test/sole_demo.cpp b/test/sole_demo.cpp
index 5adaa8b..e5a4e63 100644
--- a/test/sole_demo.cpp
+++ b/test/sole_demo.cpp
@@ -23,6 +23,10 @@
std::cout << "uuid v4 base62 : " << u4.base62() << std::endl;
std::cout << "uuid v4 pretty : " << u4.pretty() << std::endl << std::endl;
+ std::cout << "uuid v4 length : " << u4.str().length() << std::endl;
+
+ std::string test("123");
+ std::cout << "test length : " << test.length() << std::endl;
u1 = sole::rebuild("F81D4FAE-7DEC-11D0-A765-00A0C91E6BF6");
u4 = sole::rebuild("GITheR4tLlg-BagIW20DGja");
--
Gitblit v1.8.0