1
1

Fix in Makefile.am and to documentation in lam_object.h

This commit was SVN r888.
Этот коммит содержится в:
David Daniel 2004-03-17 20:36:14 +00:00
родитель bf2c32aa25
Коммит e267a9fdd5
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -29,7 +29,7 @@ liblfc_la_SOURCES = \
# Conditionally install the header files
if WANT_INSTALL_HEADERS
lamdir = $(includedir)/lam/lfc
lamdir = $(includedir)/lfc
lam_HEADERS = $(headers)
else
lamdir = $(includedir)

Просмотреть файл

@ -73,8 +73,8 @@
* OBJ_RELEASE(sally);
* OBJ_RELEASE(sally);
* @endcode
* When the reference count reaches zero, the class's "fini" method
* is run and the memory is freed.
* When the reference count reaches zero, the class's destructor, and
* those of its parents, are run and the memory is freed.
*
* N.B. There is no explicit free/delete method for dynamic objects in
* this model.