mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-30 00:15:47 -04:00
27 lines
741 B
C++
27 lines
741 B
C++
// ======================================================================
|
|
//
|
|
// RegexServices.cpp
|
|
// Copyright 2003 Sony Online Entertainment, Inc.
|
|
// All Rights Reserved.
|
|
//
|
|
// ======================================================================
|
|
|
|
#include "sharedRegex/FirstSharedRegex.h"
|
|
#include "sharedRegex/RegexServices.h"
|
|
|
|
// ======================================================================
|
|
|
|
void *RegexServices::allocateMemory(size_t byteCount)
|
|
{
|
|
return new char[byteCount];
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
void RegexServices::freeMemory(void *pointer)
|
|
{
|
|
delete [] reinterpret_cast<char *>(pointer);
|
|
}
|
|
|
|
// ======================================================================
|