style cleanup

This commit is contained in:
Campbell Barton
2012-06-04 20:11:09 +00:00
parent 510f98576a
commit 5189356d58
34 changed files with 174 additions and 192 deletions

View File

@@ -72,7 +72,7 @@ struct MEM_Allocator
}
// __p is not permitted to be a null pointer.
void deallocate(pointer __p, size_type){
void deallocate(pointer __p, size_type) {
MEM_freeN(__p);
}

View File

@@ -98,7 +98,7 @@
*
* static
* MEM_RefCountPtr<RcUsefullClass>
* New(...){
* New(...) {
* return MEM_RefCountPtr<RcUsefullClass> output(
* new UsefullClass(...)
* );

View File

@@ -119,7 +119,7 @@ public :
MEM_SmartPtr(
const MEM_SmartPtr &rhs
){
) {
m_val = rhs.Release();
}