| 5853 | } |
| 5854 | |
| 5855 | String String::unquote() const { |
| 5856 | if (!is_quoted()) { |
| 5857 | return *this; |
| 5858 | } |
| 5859 | |
| 5860 | return substr(1, length() - 2); |
| 5861 | } |
| 5862 | |
| 5863 | // MinGW-GCC false positives because CharStringT::length() is int (so possibly < 0). |
| 5864 | // Don't silence for regular GCC/Clang as this is code that _could_ exhibit actual overflow bugs. |
no outgoing calls
no test coverage detected