From 44710d13ba5b95fcb3968ad957dd59040d7afc9c Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Thu, 15 Nov 2018 01:31:21 +0000 Subject: [PATCH] Workaround for a compiler bug on the ancient g++-4.8.5 --- qt_db_helpers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt_db_helpers.hpp b/qt_db_helpers.hpp index 3f159a889..da823b0cb 100644 --- a/qt_db_helpers.hpp +++ b/qt_db_helpers.hpp @@ -25,7 +25,7 @@ class ConditionalTransaction final { public: explicit ConditionalTransaction (QSqlTableModel& model) - : model_ {model} + : model_ (model) , submitted_ {false} { model_.database ().transaction ();