Unverified Commit 4f169e99 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

silence compiler warnings: const has no effect on return type

parent ee907966
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ public:
    const_iterator cbegin() const;
    const_iterator cend() const;

    const std::string & operator[](size_t index);
    const size_t count() const;
    std::string & operator[](size_t index);
    size_t count() const;
};

class TokenizerException : public std::exception {
@@ -83,7 +83,7 @@ public:
    bool has_next() const;
    void skip(int ntokens);

    const size_t count() const;
    size_t count() const;
};