Fixed preprocessor directive for when no system defines exist.

This commit is contained in:
Cameron Angus 2019-12-07 18:06:01 +00:00
parent 207f06bd56
commit 4179dacce4

View File

@ -688,7 +688,7 @@ namespace uuids
bytes.byte15 bytes.byte15
} }; } };
return uuid{ std::begin(arrbytes), std::end(arrbytes) }; return uuid{ std::begin(arrbytes), std::end(arrbytes) };
#elif #else
return uuid{}; return uuid{};
#endif #endif
} }