/[svn]/linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3344 by schoenebeck, Thu Jun 22 10:45:38 2017 UTC revision 3345 by schoenebeck, Thu Aug 10 13:18:06 2017 UTC
# Line 429  public: Line 429  public:
429          --m_index;          --m_index;
430          return it;          return it;
431      }      }
432        inline ArrExprIter& operator+=(difference_type d) {
433            m_index += d;
434            return *this;
435        }
436        inline ArrExprIter& operator-=(difference_type d) {
437            m_index -= d;
438            return *this;
439        }
440      inline bool operator==(const ArrExprIter& other) const {      inline bool operator==(const ArrExprIter& other) const {
441          return m_index == other.m_index;          return m_index == other.m_index;
442      }      }

Legend:
Removed from v.3344  
changed lines
  Added in v.3345

  ViewVC Help
Powered by ViewVC