Fix some warnings treated as errors here.

This commit is contained in:
Sergey Sharybin 2012-09-16 12:33:39 +00:00
parent a4992871d6
commit 7f1cfbfff5

@ -39,7 +39,7 @@ namespace KDL {
}
}
// Eats until the end of the line
int _EatUntilEndOfLine( std::istream& is, int* countp=NULL) {
static int _EatUntilEndOfLine( std::istream& is, int* countp=NULL) {
int ch;
int count;
count = 0;
@ -53,7 +53,7 @@ namespace KDL {
}
// Eats until the end of the comment
int _EatUntilEndOfComment( std::istream& is, int* countp=NULL) {
static int _EatUntilEndOfComment( std::istream& is, int* countp=NULL) {
int ch;
int count;
count = 0;
@ -75,7 +75,7 @@ namespace KDL {
// Eats space-like characters and comments
// possibly returns the number of space-like characters eaten.
int _EatSpace( std::istream& is,int* countp=NULL) {
static int _EatSpace( std::istream& is,int* countp=NULL) {
int ch;
int count;
count=-1;