~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/charset.cc

  • Committer: Monty Taylor
  • Date: 2009-12-27 00:49:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091227004903-maw7ktxu6i6hye9b
Moved mem_root functions into drizzled::memory:: namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#include "config.h"
17
17
 
18
18
#include "drizzled/charset.h"
19
 
#include "drizzled/error.h"
 
19
#include "drizzled/my_error.h"
20
20
#include "drizzled/charset_info.h"
21
21
#include "drizzled/internal/m_string.h"
22
22
#include <drizzled/configmake.h>
24
24
 
25
25
using namespace std;
26
26
 
27
 
namespace drizzled
28
 
{
29
27
 
30
28
/*
31
29
  We collect memory in this vector that we free on delete.
381
379
  *to= 0;
382
380
  return overflow ? UINT32_MAX : (uint32_t) (to - to_start);
383
381
}
384
 
 
385
 
} /* namespace drizzled */