summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Trader/Interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Trader/Interpreter.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Interpreter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Interpreter.h b/TAO/orbsvcs/orbsvcs/Trader/Interpreter.h
index 9c07d2de9aa..67d355d0894 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Interpreter.h
+++ b/TAO/orbsvcs/orbsvcs/Trader/Interpreter.h
@@ -32,10 +32,10 @@ class TAO_Trading_Serv_Export TAO_Interpreter
{
protected:
/// Constructor.
- TAO_Interpreter (void);
+ TAO_Interpreter ();
/// Destructor.
- ~TAO_Interpreter (void);
+ ~TAO_Interpreter ();
/// Using the Yacc generated parser, construct an expression tree
/// representing <constraints> from the tokens returned by it.
@@ -52,9 +52,9 @@ private:
};
// Functions we need for parsing.
-extern int yyparse (void);
+extern int yyparse ();
extern void yyrestart (FILE*);
-extern int yylex (void);
+extern int yylex ();
// Have yylex read from the constraint string, not from stdin.
#undef YY_INPUT