~diresu/blender/blender-command-port-002

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/VoidValue.h

  • Committer: Dietrich Bollmann
  • Date: 2010-07-23 08:21:44 UTC
  • mfrom: (15474.1.5025)
  • Revision ID: dietrich@formgames.org-20100723082144-24nrn8oku0115pwh
Update to state of blender repository from 2010-07-23 revision 30644.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        
64
64
#ifdef WITH_CXX_GUARDEDALLOC
65
65
public:
66
 
        void *operator new( unsigned int num_bytes) { return MEM_mallocN(num_bytes, "GE:CVoidValue"); }
 
66
        void *operator new(size_t num_bytes) { return MEM_mallocN(num_bytes, "GE:CVoidValue"); }
67
67
        void operator delete( void *mem ) { MEM_freeN(mem); }
68
68
#endif
69
69
};