style cleanup
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
@@ -98,7 +98,7 @@
|
||||
*
|
||||
* static
|
||||
* MEM_RefCountPtr<RcUsefullClass>
|
||||
* New(...){
|
||||
* New(...) {
|
||||
* return MEM_RefCountPtr<RcUsefullClass> output(
|
||||
* new UsefullClass(...)
|
||||
* );
|
||||
|
@@ -119,7 +119,7 @@ public :
|
||||
|
||||
MEM_SmartPtr(
|
||||
const MEM_SmartPtr &rhs
|
||||
){
|
||||
) {
|
||||
m_val = rhs.Release();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user