From 81621d8366cd0c24f14b01fe549b7bb29e3f0bdc Mon Sep 17 00:00:00 2001 From: Magdy Sedra <62825437+MSedra@users.noreply.github.com> Date: Mon, 1 Feb 2021 13:09:27 +0200 Subject: [PATCH] Updated --- range_queries/persistent_seg_tree_lazy_prop.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/range_queries/persistent_seg_tree_lazy_prop.cpp b/range_queries/persistent_seg_tree_lazy_prop.cpp index ce9c256ff..37ba6e530 100644 --- a/range_queries/persistent_seg_tree_lazy_prop.cpp +++ b/range_queries/persistent_seg_tree_lazy_prop.cpp @@ -154,7 +154,7 @@ namespace range_queries { * public methods that can be used directly from outside the class. They call the private functions that do all the work */ public: - + /** * @brief Constructing the segment tree with the values in the passed vector. Returned root pointer is pushed in the pointers vector to have access to the original version if the segment tree is updated * @param vec vector whose values will be used to build the segment tree @@ -257,12 +257,7 @@ static void test() { * @brief Main function * @returns 0 on exit */ -uint32_t main() { +int main() { test(); // run self-test implementations return 0; } - - - - -