diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-27 23:32:34 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-27 23:32:34 +0100 |
commit | 812c1a7f6b08f392da8927ac2d9c6fdf80ee3c46 (patch) | |
tree | 67ead56236e5de2d7b6ce848b09b277dba7395fe /storage | |
parent | 7879632cea8460abe09d4521e72d0cf6b5233010 (diff) | |
download | mariadb-git-812c1a7f6b08f392da8927ac2d9c6fdf80ee3c46.tar.gz |
- Modify the way value.h and valblk.h are included to try fixing
the gcc error: invalid use of incomplete type
modified:
storage/connect/myconn.cpp
storage/connect/xobject.h
Diffstat (limited to 'storage')
-rw-r--r-- | storage/connect/myconn.cpp | 2 | ||||
-rw-r--r-- | storage/connect/xobject.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/connect/myconn.cpp b/storage/connect/myconn.cpp index 3326074d865..f269b12440b 100644 --- a/storage/connect/myconn.cpp +++ b/storage/connect/myconn.cpp @@ -41,7 +41,7 @@ #include "plgdbsem.h" #include "plgcnx.h" // For DB types #include "resource.h" -#include "value.h" +//#include "value.h" #include "valblk.h" #define DLL_EXPORT // Items are exported from this DLL #include "myconn.h" diff --git a/storage/connect/xobject.h b/storage/connect/xobject.h index 557cd4ceb8f..c77fb703823 100644 --- a/storage/connect/xobject.h +++ b/storage/connect/xobject.h @@ -14,7 +14,7 @@ /* block.h is header containing Block global declarations. */ /***********************************************************************/ #include "block.h" -#include "value.h" +#include "valblk.h" // includes value.h /***********************************************************************/ /* Types used in some class definitions. */ |