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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2008-11-20 23:41:53 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2008-11-20 23:41:53 +0300
commit079de27a8f1229096223c4bba70477667e7fc580 (patch)
tree5d294e0ae732fefb0077e2b0047c4a33e6b4f19a
parent4c1dcf103d11e65c68392e5893540159a8f1ca85 (diff)
Renamed arguments rad1 and rad2 in order to avoid name conflicts with symbols
defined in Microsoft SDKs/Windows/v6.1/include/dlgs.h.
-rw-r--r--source/blender/blenlib/BLI_jitter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_jitter.h b/source/blender/blenlib/BLI_jitter.h
index 1cd4880d0b7..0f1278ac5d7 100644
--- a/source/blender/blenlib/BLI_jitter.h
+++ b/source/blender/blenlib/BLI_jitter.h
@@ -33,8 +33,8 @@
#define BLI_JITTER_H
extern void BLI_initjit(float *jitarr, int num);
-extern void BLI_jitterate1(float *jit1, float *jit2, int num, float rad1);
-extern void BLI_jitterate2(float *jit1, float *jit2, int num, float rad2);
+extern void BLI_jitterate1(float *jit1, float *jit2, int num, float _rad1);
+extern void BLI_jitterate2(float *jit1, float *jit2, int num, float _rad2);
#endif