diff options
author | unknown <mats@mysql.com> | 2006-01-09 15:59:39 +0100 |
---|---|---|
committer | unknown <mats@mysql.com> | 2006-01-09 15:59:39 +0100 |
commit | 00ba4659ee3c0abf37a126199b610d7b65e4258a (patch) | |
tree | 4b47e443301b1475d4853870b927e373595a2570 /sql/log_event.h | |
parent | 9bdabbf6d80ba7bb15ccce21c4cee64088b9d881 (diff) | |
download | mariadb-git-00ba4659ee3c0abf37a126199b610d7b65e4258a.tar.gz |
Changes to support aCC on HP-UX.
sql/log_event.h:
Adding enumeration constants since aCC (HP-UX) does not like empty enumerations.
sql/sql_class.cc:
Adding template parameter as argument to member template function to support aCC on HP-UX.
sql/sql_class.h:
Adding template parameter as argument to member template function to support aCC on HP-UX.
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 5d58a204ec9..3ddf177a9cf 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -1673,8 +1673,11 @@ public: { /* Nothing here right now, but the flags support is there in - preparation for changes that are coming. + preparation for changes that are coming. Need to add a + constant to make it compile under HP-UX: aCC does not like + empty enumerations. */ + ENUM_FLAG_COUNT }; typedef uint16 flag_set; |