From 96966627ca69f0649c6b0c114fbe578172e5800b Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Sat, 2 Dec 2023 12:26:55 -0800 Subject: [PATCH] Remove extra semi colon from squangle/mysql_client/Row.cpp Summary: `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: dmm-fb Differential Revision: D51777911 fbshipit-source-id: bcfd46ade9c05669a1cb9afbb7b9e172200f667d --- squangle/mysql_client/Row.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/squangle/mysql_client/Row.cpp b/squangle/mysql_client/Row.cpp index 4057ef4..441d50a 100644 --- a/squangle/mysql_client/Row.cpp +++ b/squangle/mysql_client/Row.cpp @@ -263,7 +263,7 @@ std::chrono::system_clock::time_point parseDateTime( break; default: break; - }; + } if (!parse_succeeded) { throw std::range_error("Can't parse date");