From 7f1cfbfff5adb25e0b7610451566b8cc24b3211a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sun, 16 Sep 2012 12:33:39 +0000 Subject: Fix some warnings treated as errors here. --- intern/itasc/kdl/utilities/utility_io.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern') diff --git a/intern/itasc/kdl/utilities/utility_io.cpp b/intern/itasc/kdl/utilities/utility_io.cpp index e16a85167bc..8656b05545c 100644 --- a/intern/itasc/kdl/utilities/utility_io.cpp +++ b/intern/itasc/kdl/utilities/utility_io.cpp @@ -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; -- cgit v1.2.3