]> git.saurik.com Git - apt.git/commitdiff
warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
authorDavid Kalnischkies <david@kalnischkies.de>
Sat, 1 Mar 2014 12:55:20 +0000 (13:55 +0100)
committerDavid Kalnischkies <david@kalnischkies.de>
Thu, 13 Mar 2014 12:58:45 +0000 (13:58 +0100)
Reported-By: gcc -Wignored-qualifiers
Git-Dch: Ignore

apt-pkg/aptconfiguration.cc
apt-pkg/aptconfiguration.h
apt-pkg/pkgcache.h
apt-pkg/tagfile.cc
apt-pkg/tagfile.h
test/interactive-helper/aptwebserver.cc

index 3948854c66496c9b683c315a3d87b14f606a0209..4c609c603891d32cc1b782e0b9e56f0f7fe87c3e 100644 (file)
@@ -270,7 +270,7 @@ std::vector<std::string> const Configuration::getLanguages(bool const &All,
 }
                                                                        /*}}}*/
 // checkLanguage - are we interested in the given Language?            /*{{{*/
-bool const Configuration::checkLanguage(std::string Lang, bool const All) {
+bool Configuration::checkLanguage(std::string Lang, bool const All) {
        // the empty Language is always interesting as it is the original
        if (Lang.empty() == true)
                return true;
@@ -390,7 +390,7 @@ std::vector<std::string> const Configuration::getArchitectures(bool const &Cache
 }
                                                                        /*}}}*/
 // checkArchitecture - are we interested in the given Architecture?    /*{{{*/
-bool const Configuration::checkArchitecture(std::string const &Arch) {
+bool Configuration::checkArchitecture(std::string const &Arch) {
        if (Arch == "all")
                return true;
        std::vector<std::string> const archs = getArchitectures(true);
index 026493c6df40a560c9ab9a67967da72a39960b6b..dfed194aed8f05a1427e310250fb3590b20a116c 100644 (file)
@@ -73,7 +73,7 @@ public:                                                                       /*{{{*/
         *  \param All defines if we check against all codes or only against used codes
         *  \return true if we are interested, false otherwise
         */
-       bool static const checkLanguage(std::string Lang, bool const All = false);
+       bool static checkLanguage(std::string Lang, bool const All = false);
 
        /** \brief Returns a vector of Architectures we support
         *
@@ -89,7 +89,7 @@ public:                                                                       /*{{{*/
         *  \param Arch we want to check
         *  \return true if we are interested, false otherwise
         */
-       bool static const checkArchitecture(std::string const &Arch);
+       bool static checkArchitecture(std::string const &Arch);
 
        /** \brief Representation of supported compressors */
        struct Compressor {
index 9a88246a1194bd660c5c4652277c6ae0c646651d..b3a714511598cc1eaad4b3e2f06c5ce69c2323ab 100644 (file)
@@ -201,7 +201,7 @@ class pkgCache                                                              /*{{{*/
    inline PkgFileIterator FileEnd();
 
    inline bool MultiArchCache() const { return MultiArchEnabled; }
-   inline char const * const NativeArch() const;
+   inline char const * NativeArch();
 
    // Make me a function
    pkgVersioningSystem *VS;
@@ -661,7 +661,7 @@ struct pkgCache::StringItem
                                                                        /*}}}*/
 
 
-inline char const * const pkgCache::NativeArch() const
+inline char const * pkgCache::NativeArch()
        { return StrP + HeaderP->Architecture; }
 
 #include <apt-pkg/cacheiterators.h>
index 832a40d1ea35fc60b517784198c9b407839db7bd..e1459c80e42c20a9a9a1d4f83591adab6e8b520a 100644 (file)
@@ -471,7 +471,7 @@ bool pkgTagSection::FindFlag(const char *Tag,unsigned long &Flags,
       return true;
    return FindFlag(Flags, Flag, Start, Stop);
 }
-bool const pkgTagSection::FindFlag(unsigned long &Flags, unsigned long Flag,
+bool pkgTagSection::FindFlag(unsigned long &Flags, unsigned long Flag,
                                        char const* Start, char const* Stop)
 {
    switch (StringToBool(string(Start, Stop)))
index 518d3dbcd60bf8d8caa512371aac4c1ca56f12b4..2f600d397138d7d07b8661259a0af5e5968d6a32 100644 (file)
@@ -65,7 +65,7 @@ class pkgTagSection
    unsigned long long FindULL(const char *Tag, unsigned long long const &Default = 0) const;
    bool FindFlag(const char *Tag,unsigned long &Flags,
                 unsigned long Flag) const;
-   bool static const FindFlag(unsigned long &Flags, unsigned long Flag,
+   bool static FindFlag(unsigned long &Flags, unsigned long Flag,
                                const char* Start, const char* Stop);
    bool Scan(const char *Start,unsigned long MaxLength);
    inline unsigned long size() const {return Stop - Section;};
index 7ed984fa9c0426c1e064df246b1609e91ead9735..fb9f7d34ebf3c0ff62810e8e637b69b7bf078b15 100644 (file)
@@ -23,7 +23,7 @@
 #include <dirent.h>
 #include <signal.h>
 
-static char const * const httpcodeToStr(int const httpcode)            /*{{{*/
+static char const * httpcodeToStr(int const httpcode)          /*{{{*/
 {
    switch (httpcode)
    {