Fix compilation problem.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1537 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-02-19 17:33:14 +00:00
parent 7811487b2a
commit 71794f7d81
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2001-02-19 Dekel Tsur <dekelts@tau.ac.il>
* array.C (MathedArray): Fix compilation problem.
2001-02-14 André Pönitz <poenitz@htwm.de>

View File

@ -21,7 +21,7 @@ void * my_memcpy(void * ps_in, void const * pt_in, size_t n)
MathedArray::MathedArray()
: bf_(1, 0), last_(0)
: bf_(1, '\0'), last_(0)
{}
MathedArray::~MathedArray()