Working project

This commit is contained in:
millb 2019-11-13 13:12:10 +03:00
parent e1c73f41de
commit dcbc4332c1

View File

@ -717,11 +717,8 @@ private:
size_t size = vec_from.size();
for (size_t i = 0; i < size; ++i)
{
char hex_string[36];
formatUUID(std::reverse_iterator<const UInt8 *>(reinterpret_cast<const UInt8 *>(&vec_from[i]) + 16), reinterpret_cast<UInt8 *>(hex_string));
for (size_t j = 0; j < 36; ++j) {
std::cerr << hex_string[j] << std::endl;
}
String hex_string = toString(UUID(vec_from[i]));
std::cerr << hex_string << std::endl;
const ToType h = Impl::apply(reinterpret_cast<const char *>(&hex_string), 16);
if (first)
vec_to[i] = h;