Skip to content

Commit

Permalink
change arguments in UCIParser's constructor and Init function non-opt…
Browse files Browse the repository at this point in the history
…ional.
  • Loading branch information
Dong Yu committed Feb 18, 2016
1 parent afd45f5 commit 9c63a33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Readers/UCIFastReader/UCIParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ class UCIParser

public:
// UCIParser constructor
UCIParser(char customDelimiter = char(0), char customDecimalPoint = char(0));
UCIParser(char customDelimiter, char customDecimalPoint);
// setup all the state variables and state tables for state machine
void Init(char customDelimiter = char(0), char customDecimalPoint = char(0));
void Init(char customDelimiter, char customDecimalPoint);

// Parser destructor
~UCIParser();
Expand Down

0 comments on commit 9c63a33

Please sign in to comment.