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:
Diffstat (limited to 'intern/libmv/libmv/base/aligned_malloc.cc')
-rw-r--r--intern/libmv/libmv/base/aligned_malloc.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/libmv/libmv/base/aligned_malloc.cc b/intern/libmv/libmv/base/aligned_malloc.cc
index 5d3e05e9df9..6e327acf928 100644
--- a/intern/libmv/libmv/base/aligned_malloc.cc
+++ b/intern/libmv/libmv/base/aligned_malloc.cc
@@ -41,11 +41,11 @@
namespace libmv {
-void *aligned_malloc(int size, int alignment) {
+void* aligned_malloc(int size, int alignment) {
#ifdef _WIN32
return _aligned_malloc(size, alignment);
#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
- void *result;
+ void* result;
if (posix_memalign(&result, alignment, size)) {
// non-zero means allocation error
@@ -58,7 +58,7 @@ void *aligned_malloc(int size, int alignment) {
#endif
}
-void aligned_free(void *ptr) {
+void aligned_free(void* ptr) {
#ifdef _WIN32
_aligned_free(ptr);
#else