Loki/tools/RegressionTest/Test_SmallObj.cpp
magmaikh 69936e7e81 no message
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@35 7ec92016-0320-0410-acc4-a06ded1c099a
2002-08-15 02:07:50 +00:00

22 lines
No EOL
228 B
C++

//
//Test the Small Object Allocator
// MKH
//
#include <Loki\SmallObj.h>
namespace
{
struct Test : Loki::SmallObj
{
};
void Test_SmallObject()
{
Test;
}
}//ns anon
extern void Test_SmallObj()
{
Test_SmallObject();
}