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/memutil/MEM_Allocator.h')
-rw-r--r--intern/memutil/MEM_Allocator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/memutil/MEM_Allocator.h b/intern/memutil/MEM_Allocator.h
index b3a6df74ba2..68712e45558 100644
--- a/intern/memutil/MEM_Allocator.h
+++ b/intern/memutil/MEM_Allocator.h
@@ -54,11 +54,11 @@ struct MEM_Allocator
#endif
MEM_Allocator() throw() {}
- MEM_Allocator(const MEM_Allocator& __a) throw() {}
+ MEM_Allocator(const MEM_Allocator&) throw() {}
#ifndef MS_VISUALC_6_0_WORKAROUND
template<typename _Tp1>
- MEM_Allocator(const MEM_Allocator<_Tp1> __a) throw() { }
+ MEM_Allocator(const MEM_Allocator<_Tp1>) throw() { }
#endif
~MEM_Allocator() throw() {}