summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt1
-rw-r--r--src/MatrixClient.cc2
2 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 69efeedd..1591c36f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -121,7 +121,6 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU")
-Werror \
-pipe \
-pedantic \
- -ferror-limit=3 \
-Wunreachable-code")
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
diff --git a/src/MatrixClient.cc b/src/MatrixClient.cc
index 3a987d27..28aeb47d 100644
--- a/src/MatrixClient.cc
+++ b/src/MatrixClient.cc
@@ -927,7 +927,7 @@ MatrixClient::readEvent(const QString &room_id, const QString &event_id)
auto reply = post(request, "{}");
- connect(reply, &QNetworkReply::finished, this, [this, reply]() {
+ connect(reply, &QNetworkReply::finished, this, [reply]() {
reply->deleteLater();
int status = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();