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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-05-19 17:15:07 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-05-19 17:15:07 +0400
commit8ef2f1d524d81bce565d08f647805e6084de54de (patch)
tree09ef74c8cb7550449f2c7f86fa881f5fc461d149 /source/blender/freestyle/intern/system/StringUtils.cpp
parent09b36970bb584c1c72dd6166f2dde068b09e22bf (diff)
soc-2008-mxcurioni: resolved uint issues (replaced with unsigned int). Still NOT linking
Diffstat (limited to 'source/blender/freestyle/intern/system/StringUtils.cpp')
-rwxr-xr-xsource/blender/freestyle/intern/system/StringUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/system/StringUtils.cpp b/source/blender/freestyle/intern/system/StringUtils.cpp
index 556299e45c5..bbdbef10a10 100755
--- a/source/blender/freestyle/intern/system/StringUtils.cpp
+++ b/source/blender/freestyle/intern/system/StringUtils.cpp
@@ -53,7 +53,7 @@ namespace StringUtils {
stringstream out("");
char s;
- for(uint i=0; i < str.size() ; i++){
+ for(unsigned int i=0; i < str.size() ; i++){
s = ((char)(str.at(i) & 0x7F));
out << s;
}