From 4179dacce438e70e9c754c21f5338a0943b57582 Mon Sep 17 00:00:00 2001 From: Cameron Angus Date: Sat, 7 Dec 2019 18:06:01 +0000 Subject: [PATCH] Fixed preprocessor directive for when no system defines exist. --- include/uuid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uuid.h b/include/uuid.h index 34f59e5..1cbdb0e 100644 --- a/include/uuid.h +++ b/include/uuid.h @@ -688,7 +688,7 @@ namespace uuids bytes.byte15 } }; return uuid{ std::begin(arrbytes), std::end(arrbytes) }; -#elif +#else return uuid{}; #endif }