From 7898d2f2a950eab84c7bacfa1a4808b6edbf70ee Mon Sep 17 00:00:00 2001 From: silverqx Date: Thu, 7 Nov 2024 19:04:11 +0100 Subject: [PATCH] utils added comment --- include/orm/utils/string.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/orm/utils/string.hpp b/include/orm/utils/string.hpp index 2c6d060d8..edcda7672 100644 --- a/include/orm/utils/string.hpp +++ b/include/orm/utils/string.hpp @@ -97,7 +97,7 @@ namespace Orm::Utils /*! Split a string at the first given character. */ static QList splitAtFirst(QStringView string, QChar separator, - Qt::SplitBehavior splitBehavior = Qt::KeepEmptyParts); + Qt::SplitBehavior splitBehavior = Qt::KeepEmptyParts); // Never change the Qt::KeepEmptyParts /*! Count number of the given character before the given position. */ static QString::size_type countBefore(QString string, QChar character,