diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-05-09 11:24:08 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-05-09 15:17:57 -0400 |
commit | dff4bf93d449b9d9086123521f83d68e98cecd09 (patch) | |
tree | ab934bca80ab4a771f1d6df2718d3498e7696d1d /src/basic/locale-util.h | |
parent | 323b7dc90343f11febf9e87872d3e8ffded11849 (diff) |
locale-util: mark special_glyph() as _const_
_const_ means that the caller can assume that the function will return the same
result every time (and will not modify global memory). special_glyph() meets
this: even though it depends on global memory, that part of global memory is
not expected to change. This allows the calls to special_glyph() to be
optimized, even if -flto is not used.
Diffstat (limited to 'src/basic/locale-util.h')
-rw-r--r-- | src/basic/locale-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/locale-util.h b/src/basic/locale-util.h index 353b7845fd..0630a034ab 100644 --- a/src/basic/locale-util.h +++ b/src/basic/locale-util.h @@ -67,7 +67,7 @@ typedef enum { _SPECIAL_GLYPH_MAX } SpecialGlyph; -const char *special_glyph(SpecialGlyph code); +const char *special_glyph(SpecialGlyph code) _const_; const char* locale_variable_to_string(LocaleVariable i) _const_; LocaleVariable locale_variable_from_string(const char *s) _pure_; |