Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-09-16 16:33:39 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-09-16 16:33:39 +0400
commit7f1cfbfff5adb25e0b7610451566b8cc24b3211a (patch)
treeddc32ae03abe2eed5353ffa010bb17be1bfe9a2d /intern/itasc/kdl
parenta4992871d62b50cd9e6ea2fb4863aab6193ac774 (diff)
Fix some warnings treated as errors here.
Diffstat (limited to 'intern/itasc/kdl')
-rw-r--r--intern/itasc/kdl/utilities/utility_io.cpp6
1 files changed, 3 insertions, 3 deletions
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;