libpbd: fix decl of remove_extra_whitespaces

This commit is contained in:
Paul Davis 2022-09-07 17:56:52 -06:00
parent 583bfa8878
commit 73331ae46a

View File

@ -29,7 +29,7 @@ namespace PBD {
// returns the empty string if the entire string is whitespace
// so check length after calling.
LIBPBD_API extern void strip_whitespace_edges (std::string& str);
LIBPBD_API extern void remove_extra_whitespace (std::string const & in, std::string out);
LIBPBD_API extern void remove_extra_whitespace (std::string const & in, std::string & out);
} // namespace PBD
#endif // __pbd_whitespace_h__