From 2e49ce59f49d896b49b2e1127b47e5a1dbf6536e Mon Sep 17 00:00:00 2001 From: Tushar Maheshwari Date: Sat, 12 Jun 2021 11:33:41 +0530 Subject: [PATCH] Remove redundant from_string overload --- include/uuid.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/uuid.h b/include/uuid.h index 19f5ca0..002d3c5 100644 --- a/include/uuid.h +++ b/include/uuid.h @@ -513,14 +513,6 @@ namespace uuids return uuid{ data }; } - template, - class Allocator = std::allocator> - static std::optional from_string(std::basic_string const & str) noexcept - { - return from_string(str.c_str()); - } - private: std::array data{ { 0 } };