Commit 403ef991 authored by Olivier Bertrand's avatar Olivier Bertrand

Fix gcc compile error on friend declaration.

"friend TDBEXT" must specified as "friend class TDBEXT"
  modified:   storage/connect/tabext.h
parent 6aa144f8
......@@ -53,7 +53,7 @@ class CONDFIL : public BLOCK {
/* tables of type MYSQL, ODBC, JDBC... */
/***********************************************************************/
class DllExport EXTDEF : public TABDEF { /* EXT table */
friend TDBEXT;
friend class TDBEXT;
public:
// Constructor
EXTDEF(void); // Constructor
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment