From 99a655f23435b4c3d4fcc74f1641b827fff14a76 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 6 Jul 2020 10:30:59 -0400 Subject: [PATCH] fix warning in bundled taskflow MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fixes ``warning: extra ‘;’ [-Wpedantic]`` --- bundled/taskflow-2.5.0/include/taskflow/utility/uuid.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundled/taskflow-2.5.0/include/taskflow/utility/uuid.hpp b/bundled/taskflow-2.5.0/include/taskflow/utility/uuid.hpp index d61afaa000..c953b28e4e 100644 --- a/bundled/taskflow-2.5.0/include/taskflow/utility/uuid.hpp +++ b/bundled/taskflow-2.5.0/include/taskflow/utility/uuid.hpp @@ -217,7 +217,7 @@ inline std::ostream& operator << (std::ostream& os, const UUID& rhs) { return os; } -}; // End of namespace tf. --------------------------------------------------- +} // End of namespace tf. ---------------------------------------------------- //----------------------------------------------------------------------------- -- 2.39.5