summaryrefslogtreecommitdiff
path: root/src/include/recursivedescent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/recursivedescent.h')
-rw-r--r--src/include/recursivedescent.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/recursivedescent.h b/src/include/recursivedescent.h
index 26ad794..ea8dc67 100644
--- a/src/include/recursivedescent.h
+++ b/src/include/recursivedescent.h
@@ -19,13 +19,13 @@ namespace Binc {
extern std::stack<int> inputBuffer;
extern int charnr;
- int readChar(void);
+ int readChar();
void unReadChar(int c_in);
void unReadChar(const std::string &s_in);
Operator::ParseResult expectTag(std::string &s_in);
Operator::ParseResult expectTagChar(int &c_in);
- Operator::ParseResult expectSPACE(void);
+ Operator::ParseResult expectSPACE();
Operator::ParseResult expectFlag(std::vector<std::string> &v_in);
@@ -56,9 +56,9 @@ namespace Binc {
Operator::ParseResult expectSequenceNum(unsigned int &i_in);
Operator::ParseResult expectNZNumber(unsigned int &i_in);
- Operator::ParseResult expectCRLF(void);
- Operator::ParseResult expectCR(void);
- Operator::ParseResult expectLF(void);
+ Operator::ParseResult expectCRLF();
+ Operator::ParseResult expectCR();
+ Operator::ParseResult expectLF();
Operator::ParseResult expectThisString(const std::string &s_in);
}