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:
authorCampbell Barton <ideasman42@gmail.com>2013-08-07 07:44:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-08-07 07:44:05 +0400
commit4f29aeeff2cfe1dbe0a12910932c48ee453a6de1 (patch)
tree90c7eb236f0610b8d172255581fd4ffd791d07e9 /intern/mikktspace
parentf97a4bd25458fdc8da1a97f7b68a305c8ab35ff4 (diff)
code cleanup: some structs were declaring data when only typedef's were intended, make local vars and functions static.
Diffstat (limited to 'intern/mikktspace')
-rw-r--r--intern/mikktspace/mikktspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/mikktspace/mikktspace.c b/intern/mikktspace/mikktspace.c
index a6597986c0a..018869f36b6 100644
--- a/intern/mikktspace/mikktspace.c
+++ b/intern/mikktspace/mikktspace.c
@@ -426,7 +426,7 @@ typedef struct {
int index;
} STmpVert;
-const int g_iCells = 2048;
+static const int g_iCells = 2048;
#ifdef _MSC_VER
#define NOINLINE __declspec(noinline)