Przeglądaj źródła

StringView: pos argument default should be npos

Gbp-Dch: ignore
Julian Andres Klode 10 lat temu
rodzic
commit
eee8ee176a
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      apt-pkg/contrib/string_view.h

+ 2 - 2
apt-pkg/contrib/string_view.h

@@ -55,8 +55,8 @@ public:
         return found - data_;
     }
 
-    size_t rfind(int c, size_t pos=0) const {
-        if (pos != 0)
+    size_t rfind(int c, size_t pos=npos) const {
+        if (pos != npos)
             return substr(pos).rfind(c);
 
         const char *found = static_cast<const char*>(memrchr(data_, c, size_));