From e3058f0b7f92f583c89f3cddd347dbfd4d4d4814 Mon Sep 17 00:00:00 2001 From: "Joseph F. Boudreau" <boudreau@pitt.edu> Date: Tue, 28 May 2024 11:36:37 +0200 Subject: [PATCH] Furnished a missing included file (std::string) --- GeoModelIO/GeoModelDBManager/GeoModelDBManager/definitions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GeoModelIO/GeoModelDBManager/GeoModelDBManager/definitions.h b/GeoModelIO/GeoModelDBManager/GeoModelDBManager/definitions.h index e32142821..b4cf0afda 100644 --- a/GeoModelIO/GeoModelDBManager/GeoModelDBManager/definitions.h +++ b/GeoModelIO/GeoModelDBManager/GeoModelDBManager/definitions.h @@ -15,10 +15,10 @@ #include <vector> #include <variant> - +#include <string> // define the data types used to retrieve and store data from the DB using DBRecordEntry = std::variant<int,long,float,double,std::string>; using DBRowEntry = std::vector<DBRecordEntry>; using DBRowsList = std::vector<DBRowEntry>; -#endif \ No newline at end of file +#endif -- GitLab