ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/util.h
Revision: 1.1
Committed: Sat Sep 2 22:57:55 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef UTIL_H__
2 #define UTIL_H__
3
4 // makes dynamically allocated objects zero-initialised
5 struct zero_initialised
6 {
7 void *operator new (size_t s);
8 void operator delete (void *p, size_t s);
9 };
10
11 #endif
12