aboutsummaryrefslogtreecommitdiff
path: root/mssql/types/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'mssql/types/test.hxx')
-rw-r--r--mssql/types/test.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/mssql/types/test.hxx b/mssql/types/test.hxx
index b89a621..d735acf 100644
--- a/mssql/types/test.hxx
+++ b/mssql/types/test.hxx
@@ -241,6 +241,9 @@ struct object
GUID guid_;
#endif
+ #pragma db type ("UNIQUEIDENTIFIER")
+ char uuid_[16];
+
bool
operator== (const object& y) const
{
@@ -301,7 +304,7 @@ struct object
#ifdef _WIN32
&& std::memcmp (&guid_, &y.guid_, sizeof (guid_)) == 0
#endif
- ;
+ && std::memcmp (uuid_, y.uuid_, sizeof (uuid_)) == 0;
}
};