diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-05-28 13:22:38 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-05-28 18:12:02 +0200 |
commit | 8b79c94af7f7cf2e5e5342294bc6e5a908cacabf (patch) | |
tree | b5e7c254f6a4aa96203aee262cf5fb13ded87fbb /methods/rred.cc | |
parent | eceb219c2a64f3f81421c3c6587380b6ae81a530 (diff) |
use std::locale::global instead of setlocale
We use a wild mixture of C and C++ ways of generating output, so having
a consistent world-view in both styles sounds like a good idea and
should help in preventing regressions.
Diffstat (limited to 'methods/rred.cc')
-rw-r--r-- | methods/rred.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/methods/rred.cc b/methods/rred.cc index 79ab8cb52..51af37557 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -10,7 +10,6 @@ #include <apt-pkg/init.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/error.h> -#include <apt-pkg/acquire-method.h> #include <apt-pkg/strutl.h> #include <apt-pkg/hashes.h> #include <apt-pkg/configuration.h> @@ -704,8 +703,7 @@ int main(int argc, char **argv) Patch patch; if (argc <= 1) { - RredMethod Mth; - return Mth.Run(); + return RredMethod().Run(); } // Usage: rred -t input output diff ... |