Parcourir la source

[2096] Fix stupid naming error

When changing the names, this kind of got forgotten.
Michal 'vorner' Vaner il y a 12 ans
Parent
commit
2a95f12277
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/lib/datasrc/memory/rdata_reader.h

+ 1 - 1
src/lib/datasrc/memory/rdata_reader.h

@@ -145,7 +145,7 @@ public:
         /// equivalent to action != END, but it allows for more convenient
         /// code of a loop through the data.
         operator bool() const {
-            return (action() != END);
+            return (type() != END);
         }
     };