aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/parser/state.cxx
blob: 756190edc6ee0a66b15897d04d47629027b9d89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// file      : xsde/cxx/parser/state.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <string.h> // memcpy

#include <xsde/cxx/parser/state.hxx>

namespace xsde
{
  namespace cxx
  {
    namespace parser
    {
      stack::error stack::
      grow ()
      {
        size_t c = capacity_ ? capacity_ * 2 : 8;
        char* d = new char[c * el_size_];

        if (d == 0)
          return error_no_memory;

        if (size_ > 1)
          memcpy (d, data_, (size_ - 1) * el_size_);

        delete[] data_;

        data_ = d;
        capacity_ = c;

        return error_none;
      }
    }
  }
}