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>2012-02-26 18:57:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-26 18:57:41 +0400
commit62f9959a8e4269293ee80c3bfe3f55e8b12f7ccd (patch)
treec14c0c9430c2c6755b6bc07a818348c35868ae6f /source/blender/bmesh/bmesh.h
parented21afa2eb84bd944667b0f89cdc325ccd9d58f5 (diff)
replace bmesh_error with macro that gives the file/line/func the error happens on.
Diffstat (limited to 'source/blender/bmesh/bmesh.h')
-rw-r--r--source/blender/bmesh/bmesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/bmesh.h b/source/blender/bmesh/bmesh.h
index ace5c79a928..6ea864fe9e3 100644
--- a/source/blender/bmesh/bmesh.h
+++ b/source/blender/bmesh/bmesh.h
@@ -111,7 +111,7 @@ struct EditMesh;
/* #define BM_ELEM_NONORMCALC (1<<7) */ /* UNUSED */
/* stub */
-void bmesh_error(void);
+void _bmesh_error(const char *at, const char *func);
/* Mesh Level Ops */
extern int bm_mesh_allocsize_default[4];