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

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

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

revision 3561 by schoenebeck, Fri Aug 23 11:44:00 2019 UTC revision 3562 by schoenebeck, Fri Aug 23 12:51:58 2019 UTC
# Line 181  namespace LinuxSampler { Line 181  namespace LinuxSampler {
181          return (m_token) ? m_token->isPreprocessor() : false;          return (m_token) ? m_token->isPreprocessor() : false;
182      }      }
183    
184        bool VMSourceToken::isMetricPrefix() const {
185            return (m_token) ? m_token->isMetricPrefix() : false;
186        }
187    
188        bool VMSourceToken::isStdUnit() const {
189            return (m_token) ? m_token->isStdUnit() : false;
190        }
191    
192      bool VMSourceToken::isOther() const {      bool VMSourceToken::isOther() const {
193          return (m_token) ? m_token->isOther() : true;          return (m_token) ? m_token->isOther() : true;
194      }      }

Legend:
Removed from v.3561  
changed lines
  Added in v.3562

  ViewVC Help
Powered by ViewVC