Преглед на файлове

StringView: pos argument default should be npos

Gbp-Dch: ignore
Julian Andres Klode преди 10 години
родител
ревизия
eee8ee176a
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  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_));