diff options
Diffstat (limited to 'src/gui/fonts/textchunksmall.h')
-rw-r--r-- | src/gui/fonts/textchunksmall.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/fonts/textchunksmall.h b/src/gui/fonts/textchunksmall.h index fcf7931ba..cf0277547 100644 --- a/src/gui/fonts/textchunksmall.h +++ b/src/gui/fonts/textchunksmall.h @@ -30,14 +30,14 @@ class TextChunkSmall final { public: - TextChunkSmall(const std::string &text0, - const Color &color0, - const Color &color1); + TextChunkSmall(const std::string &restrict text0, + const Color &restrict color0, + const Color &restrict color1); - TextChunkSmall(const TextChunkSmall &old); + TextChunkSmall(const TextChunkSmall &restrict old); - bool operator==(const TextChunkSmall &chunk) const; - bool operator<(const TextChunkSmall &chunk) const; + bool operator==(const TextChunkSmall &restrict chunk) const restrict; + bool operator<(const TextChunkSmall &restrict chunk) const restrict; std::string text; Color color; |