From 7773b94232de61ef44ddc20934b4ea7b775de900 Mon Sep 17 00:00:00 2001 From: prashsti29 Date: Thu, 19 Feb 2026 22:23:28 +0530 Subject: [PATCH 1/5] clang-tidy: check and fix cppcoreguidelines-pro-bounds-array-to-pointer-decay --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 0936994542..c1b1ffa39f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -16,7 +16,6 @@ Checks: > -cppcoreguidelines-no-malloc, -cppcoreguidelines-non-private-member-variables-in-classes, -cppcoreguidelines-owning-memory, - -cppcoreguidelines-pro-bounds-array-to-pointer-decay, -cppcoreguidelines-pro-bounds-pointer-arithmetic, -cppcoreguidelines-pro-type-const-cast, -cppcoreguidelines-pro-type-member-init, From dd9a062c019fa5798c3401e1dfc1b752060d0df9 Mon Sep 17 00:00:00 2001 From: prashsti29 Date: Thu, 19 Feb 2026 23:07:29 +0530 Subject: [PATCH 2/5] fix warnings in binaryBreadthFirstSearch_driver.cpp --- src/breadthFirstSearch/binaryBreadthFirstSearch_driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/breadthFirstSearch/binaryBreadthFirstSearch_driver.cpp b/src/breadthFirstSearch/binaryBreadthFirstSearch_driver.cpp index 3377fa5343..bba5c01468 100644 --- a/src/breadthFirstSearch/binaryBreadthFirstSearch_driver.cpp +++ b/src/breadthFirstSearch/binaryBreadthFirstSearch_driver.cpp @@ -144,7 +144,7 @@ pgr_do_binaryBreadthFirstSearch( std::ostringstream err; std::ostringstream notice; const char *hint = nullptr; - const char c_err_msg[] = "Graph Condition Failed: Graph should have at most two distinct non-negative edge costs! " + const std::string c_err_msg = "Graph Condition Failed: Graph should have at most two distinct non-negative edge costs! " "If there are exactly two distinct edge costs, one of them must equal zero!"; try { From edae3d30753570b477180157379b747cbc0ee96c Mon Sep 17 00:00:00 2001 From: prashsti29 Date: Thu, 19 Feb 2026 23:09:24 +0530 Subject: [PATCH 3/5] fix warnings in assert.cpp --- src/common/assert.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/assert.cpp b/src/common/assert.cpp index c491821514..5c96d181fe 100644 --- a/src/common/assert.cpp +++ b/src/common/assert.cpp @@ -44,8 +44,8 @@ std::string get_backtrace() { void *trace[16]; int i = 0, trace_size = 0; - trace_size = backtrace(trace, 16); - char** funcNames = backtrace_symbols(trace, trace_size); + trace_size = backtrace(static_cast(trace), 16); + char** funcNames = backtrace_symbols(static_cast(trace), trace_size); std::string message = "\n*** Execution path***\n"; From 8e1198043d1b1ed4a7e349216b982e22b8e07e1d Mon Sep 17 00:00:00 2001 From: prashsti29 Date: Mon, 2 Mar 2026 19:41:14 +0530 Subject: [PATCH 4/5] Trigger GitHub Actions --- .ci-trigger | 1 + 1 file changed, 1 insertion(+) create mode 100644 .ci-trigger diff --git a/.ci-trigger b/.ci-trigger new file mode 100644 index 0000000000..69d2df5dc0 --- /dev/null +++ b/.ci-trigger @@ -0,0 +1 @@ +trigger CI From a09c733ac8cea6ae0099ae40015d37c8d5ba65ab Mon Sep 17 00:00:00 2001 From: prashsti29 Date: Tue, 3 Mar 2026 17:39:57 +0530 Subject: [PATCH 5/5] Remove temporary CI trigger file --- .ci-trigger | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .ci-trigger diff --git a/.ci-trigger b/.ci-trigger deleted file mode 100644 index 69d2df5dc0..0000000000 --- a/.ci-trigger +++ /dev/null @@ -1 +0,0 @@ -trigger CI