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
commit 31f918eadb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;