| 102 | } |
| 103 | |
| 104 | TGuid TGuid::FromStringHex32(TStringBuf str) |
| 105 | { |
| 106 | TGuid guid; |
| 107 | if (!FromStringHex32(str, &guid)) { |
| 108 | throw TSimpleException(Sprintf("Error parsing Hex32 GUID \"%s\"", |
| 109 | str.data())); |
| 110 | } |
| 111 | return guid; |
| 112 | } |
| 113 | |
| 114 | bool TGuid::FromStringHex32(TStringBuf str, TGuid* result) |
| 115 | { |
nothing calls this directly
no test coverage detected