diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-19 18:40:40 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-19 18:40:40 +0100 |
commit | 6d03c4cbfe9eb15d8aa298ab5053b117b95d416d (patch) | |
tree | d88f1453b1c5606738306c32c39b3fd51b7f5d18 | |
parent | Fix MySQLRecordSet seek/fetch behaviour (diff) | |
download | mygrate-6d03c4cbfe9eb15d8aa298ab5053b117b95d416d.tar.bz2 mygrate-6d03c4cbfe9eb15d8aa298ab5053b117b95d416d.tar.xz mygrate-6d03c4cbfe9eb15d8aa298ab5053b117b95d416d.zip |
Add missing header to prevent recursion
Nasty!
-rw-r--r-- | lib/dbTypes.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dbTypes.cpp b/lib/dbTypes.cpp index 7a428ae..c848045 100644 --- a/lib/dbTypes.cpp +++ b/lib/dbTypes.cpp @@ -1,4 +1,5 @@ #include "dbTypes.h" +#include <iostream> // Required else this write::operator() is always recursive namespace std { struct write { |