From ce6381cca855480fe6cfa00b6ca0b8f64e563f77 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Mon, 1 Mar 2010 18:44:28 +0000 Subject: [PATCH] MSVC C++ compatibility: Rename the internal name of union _GUID because _GUID is a builtin keyword here. This does not concern the typedef name, only the internal union name, so it doesn't harm us. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18772 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/libqof/qof/guid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libqof/qof/guid.h b/src/libqof/qof/guid.h index 5f7dbb83de..7e72d125a4 100644 --- a/src/libqof/qof/guid.h +++ b/src/libqof/qof/guid.h @@ -51,7 +51,7 @@ /** The type used to store guids */ #define GUID_DATA_SIZE 16 -typedef union _GUID +typedef union GNC_INTERNAL_GUID { guchar data[GUID_DATA_SIZE];