From 3ea8d7c71cd8e3b4611a997da8f944232e4ee7e8 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 4 Jul 2017 16:33:18 +0200 Subject: [PATCH] try to resolve ambigious GUID with mingw --- src/pva/pv/pvaDefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pva/pv/pvaDefs.h b/src/pva/pv/pvaDefs.h index c88820e..77545e7 100644 --- a/src/pva/pv/pvaDefs.h +++ b/src/pva/pv/pvaDefs.h @@ -11,9 +11,9 @@ namespace pvAccess { /** * Globally unique ID. */ -typedef struct { +struct GUID { char value[12]; -} GUID; +}; typedef epicsInt32 pvAccessID;