Merge pull request #1742 from daybeforenet/mu-str-compilation-fix

Don't declare mu_str_size_s() with the const attribute.
This commit is contained in:
Dirk-Jan C. Binnema
2020-06-30 19:14:29 +03:00
committed by GitHub

View File

@ -48,7 +48,7 @@ G_BEGIN_DECLS
* @return a string representation of the size; see above
* for what to do with it
*/
const char* mu_str_size_s (size_t s) G_GNUC_CONST;
const char* mu_str_size_s (size_t s);
char* mu_str_size (size_t s) G_GNUC_WARN_UNUSED_RESULT;