Просмотр исходного кода

StringView: pos argument default should be npos

Gbp-Dch: ignore
Julian Andres Klode лет назад: 10
Родитель
Сommit
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_));