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>2014-05-01 19:14:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-01 19:14:15 +0400
commit95b93b5d46b7fb8b98295a1368bc44a3f63fe8c7 (patch)
treeb8354da5645d51d98d010fce61d86d163d2b4b2c /source/blender/blenlib/BLI_compiler_compat.h
parent35ca2091529cc7817f52ecc36b09f27713f474c1 (diff)
Add BLI_compiler_compat.h to help with portability
Diffstat (limited to 'source/blender/blenlib/BLI_compiler_compat.h')
-rw-r--r--source/blender/blenlib/BLI_compiler_compat.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_compiler_compat.h b/source/blender/blenlib/BLI_compiler_compat.h
new file mode 100644
index 00000000000..60a7d8dbd02
--- /dev/null
+++ b/source/blender/blenlib/BLI_compiler_compat.h
@@ -0,0 +1,35 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#ifndef __BLI_COMPILER_COMPAT_H__
+#define __BLI_COMPILER_COMPAT_H__
+
+/** \file BLI_compiler_compat.h
+ * \ingroup bli
+ *
+ * Use to help with cross platform portability.
+ */
+
+#if defined(_MSC_VER)
+# define __func__ __FUNCTION__
+# define alloca _alloca
+#endif
+
+#endif /* __BLI_COMPILER_COMPAT_H__ */