From a6bbe050f7b56f4351bddf05fc3f8cf7c1d63711 Mon Sep 17 00:00:00 2001 From: Jxtopher <39927513+Jxtopher@users.noreply.github.com> Date: Sun, 5 Sep 2021 19:37:31 +0200 Subject: [PATCH] fix: Add `return 0` in `bactracking/magic_sequence.cpp` (#1589) * Update magic_sequence.cpp * clang-format and clang-tidy fixes for ff127de6 * Update backtracking/magic_sequence.cpp Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com> Co-authored-by: David Leal --- backtracking/magic_sequence.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/backtracking/magic_sequence.cpp b/backtracking/magic_sequence.cpp index 13a260dc985..478dd28dc6f 100644 --- a/backtracking/magic_sequence.cpp +++ b/backtracking/magic_sequence.cpp @@ -132,4 +132,5 @@ int main() { backtracking::magic_sequence::print(item); } } + return 0; }