mirror of
https://github.com/lovell/sharp.git
synced 2026-02-16 03:16:16 +01:00
Trim space from end of libvips error messages
This commit is contained in:
@@ -226,6 +226,13 @@ namespace sharp {
|
||||
return EndsWith(str, ".v") || EndsWith(str, ".V") || EndsWith(str, ".vips") || EndsWith(str, ".VIPS");
|
||||
}
|
||||
|
||||
/*
|
||||
Trim space from end of string.
|
||||
*/
|
||||
std::string TrimEnd(std::string const &str) {
|
||||
return str.substr(0, str.find_last_not_of(" \n\r\f") + 1);
|
||||
}
|
||||
|
||||
/*
|
||||
Provide a string identifier for the given image type.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user