diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2007-10-11 13:29:09 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2007-10-11 13:29:09 -0400 |
commit | d43c15b0dee8f67a63de601f82d9358c38f68b49 (patch) | |
tree | dc8fcee29ee23089c456415062c32abb0468c823 /sql/item_buff.cc | |
parent | 39062b7e4ee782ca7853808a1c006846ae027263 (diff) | |
download | mariadb-git-d43c15b0dee8f67a63de601f82d9358c38f68b49.tar.gz |
Doxygenization of comments.
Diffstat (limited to 'sql/item_buff.cc')
-rw-r--r-- | sql/item_buff.cc | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/sql/item_buff.cc b/sql/item_buff.cc index c162b84f457..2f45d0a17c2 100644 --- a/sql/item_buff.cc +++ b/sql/item_buff.cc @@ -14,12 +14,17 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* Buffers to save and compare item values */ +/** + @file + + @brief + Buffers to save and compare item values +*/ #include "mysql_priv.h" -/* -** Create right type of Cached_item for an item +/** + Create right type of Cached_item for an item. */ Cached_item *new_Cached_item(THD *thd, Item *item) @@ -45,9 +50,11 @@ Cached_item *new_Cached_item(THD *thd, Item *item) Cached_item::~Cached_item() {} -/* -** Compare with old value and replace value with new value -** Return true if values have changed +/** + Compare with old value and replace value with new value. + + @return + Return true if values have changed */ Cached_item_str::Cached_item_str(THD *thd, Item *arg) |