From ac5e18320323310f816fe8df0f46ebd7effcecd9 Mon Sep 17 00:00:00 2001 From: Dmytro Ivanov Date: Fri, 27 Sep 2024 14:07:17 +0200 Subject: add cmake build config to be able to use clion --- src/zenserver/projectstore/httpprojectstore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/zenserver/projectstore/httpprojectstore.cpp') diff --git a/src/zenserver/projectstore/httpprojectstore.cpp b/src/zenserver/projectstore/httpprojectstore.cpp index cffd2569f..a72aa627d 100644 --- a/src/zenserver/projectstore/httpprojectstore.cpp +++ b/src/zenserver/projectstore/httpprojectstore.cpp @@ -1482,14 +1482,14 @@ HttpProjectService::HandleOpLogEntriesRequest(HttpRouterRequest& Req) ProjectStore::Oplog::Paging EntryPaging; if (std::string_view Param = Params.GetValue("start"); !Param.empty()) { - if (auto Value = ParseInt(Param)) + if (auto Value = ParseInt(Param)) { EntryPaging.Start = *Value; } } if (std::string_view Param = Params.GetValue("count"); !Param.empty()) { - if (auto Value = ParseInt(Param)) + if (auto Value = ParseInt(Param)) { EntryPaging.Count = *Value; } -- cgit v1.2.3