/[svn]/linuxsampler/trunk/src/engines/sfz/sfz.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/sfz/sfz.cpp

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

revision 3095 by schoenebeck, Wed Jan 18 14:52:31 2017 UTC revision 3291 by persson, Sat Jun 24 12:56:44 2017 UTC
# Line 1216  namespace sfz Line 1216  namespace sfz
1216              while (linestream >> token)              while (linestream >> token)
1217              {              {
1218                  linestream >> std::noskipws;                  linestream >> std::noskipws;
1219                    if (token[0] == '<') {
1220                        std::string::size_type p = token.find('>', 1);
1221                        if (p != std::string::npos && p < (token.size() - 1)) {
1222                            linestream.seekg(p + 1 - token.size(), std::stringstream::cur);
1223                            token.erase(p + 1);
1224                        }
1225                    }
1226                  if (token[0] == '<' && token[token.size()-1] == '>')                  if (token[0] == '<' && token[token.size()-1] == '>')
1227                  {                  {
1228                      // HEAD                      // HEAD

Legend:
Removed from v.3095  
changed lines
  Added in v.3291

  ViewVC Help
Powered by ViewVC