| 196 | |
| 197 | |
| 198 | extern "C" PauliStrSum createInlinePauliStrSum(const char* str) { |
| 199 | |
| 200 | // str must be null-terminated |
| 201 | return createInlinePauliStrSum(string(str)); |
| 202 | } |
| 203 | |
| 204 | PauliStrSum createInlinePauliStrSum(string str) { |
| 205 |
no test coverage detected