diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-09-30 03:00:42 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-09-30 03:00:42 +0200 |
commit | 440614ff30c053e3691a793556d8c674258fb58b (patch) | |
tree | e0d430899d3c1bcaef54200d86d0196c5decdf03 /apt-pkg | |
parent | f6d4ab9ad8a2cfe52737ab620dd252cf8ceec43d (diff) |
fix another instance of warning: extra ‘;’ [-Wpedantic]
Git-Dch: Ignore
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/install-progress.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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) |