/[svn]/linuxsampler/trunk/src/network/lscp.y
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscp.y

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

revision 2188 by iliev, Fri Jun 24 19:39:11 2011 UTC revision 2461 by persson, Sun Aug 25 06:09:11 2013 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2010 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2013 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 105  int octalsToNumber(char oct_digit0, char Line 105  int octalsToNumber(char oct_digit0, char
105    
106  // we provide our own version of yyerror() so we don't have to link against the yacc library  // we provide our own version of yyerror() so we don't have to link against the yacc library
107  void yyerror(const char* s);  void yyerror(const char* s);
108    void yyerror(void* x, const char* s) { yyerror(s); }
109    
110  using namespace LinuxSampler;  using namespace LinuxSampler;
111    
112  %}  %}
113    
114  // reentrant parser  // reentrant parser
115  %pure_parser  %pure-parser
116    
117    %parse-param {void* yyparse_param}
118    
119  // tell bison to spit out verbose syntax error messages  // tell bison to spit out verbose syntax error messages
120  %error-verbose  %error-verbose

Legend:
Removed from v.2188  
changed lines
  Added in v.2461

  ViewVC Help
Powered by ViewVC