From c4cb141646798aeb76fff22948bcb7d155c8a7e1 Mon Sep 17 00:00:00 2001 From: Kiri Date: Wed, 12 Aug 2015 15:36:15 +0100 Subject: [PATCH] Removed OS X specific code from UUID generation. --- source/common/uuid.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/source/common/uuid.cpp b/source/common/uuid.cpp index a658829..f3603b1 100644 --- a/source/common/uuid.cpp +++ b/source/common/uuid.cpp @@ -11,10 +11,6 @@ wxString GenerateUUID() wxString Result(UUIDStr); #elif defined(__HAIKU__) -#elif defined(__APPLE__) - - wxString Result; - #else #include @@ -40,19 +36,6 @@ wxString GenerateUUID() pclose(uuid_hdl); -/*#include - - uuid_t *uuid; - uuid_create(&uuid); - char *strdata[100]; - - strdata = NULL; - - wxString Result = wxString::FromUTF8(strdata); - - delete strdata; - strdata = NULL;*/ - #endif return Result; -- 2.39.2