From: David Kalnischkies Date: Tue, 30 Sep 2014 01:00:42 +0000 (+0200) Subject: fix another instance of warning: extra ‘;’ [-Wpedantic] X-Git-Tag: 1.1.exp4~19^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/440614ff30c053e3691a793556d8c674258fb58b fix another instance of warning: extra ‘;’ [-Wpedantic] Git-Dch: Ignore --- diff --git a/apt-pkg/install-progress.cc b/apt-pkg/install-progress.cc index 0d180d59b..5ea8bf4d0 100644 --- a/apt-pkg/install-progress.cc +++ b/apt-pkg/install-progress.cc @@ -21,8 +21,8 @@ namespace APT { namespace Progress { -PackageManager::PackageManager() : d(NULL), percentage(0.0), last_reported_progress(-1) {}; -PackageManager::~PackageManager() {}; +PackageManager::PackageManager() : d(NULL), percentage(0.0), last_reported_progress(-1) {} +PackageManager::~PackageManager() {} /* Return a APT::Progress::PackageManager based on the global * apt configuration (i.e. APT::Status-Fd and APT::Status-deb822-Fd)