diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-08 18:05:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-08 18:05:46 +0300 |
commit | 467a5c03ccb5ea2d1977bd84adcab69eefb4e051 (patch) | |
tree | a43709e19c87776f2db42304b6bd7f0c13721361 /src/gui/fonts/textchunksmall.h | |
parent | 9547e64f0f25bb9f50cac9ba9dc035fbc051d4c2 (diff) | |
download | plus-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.gz plus-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.bz2 plus-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.xz plus-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.zip |
Add missing operator= in classes with copy constructors.
Diffstat (limited to 'src/gui/fonts/textchunksmall.h')
-rw-r--r-- | src/gui/fonts/textchunksmall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/fonts/textchunksmall.h b/src/gui/fonts/textchunksmall.h index da5b83e6a..75c4e6dd7 100644 --- a/src/gui/fonts/textchunksmall.h +++ b/src/gui/fonts/textchunksmall.h @@ -38,7 +38,7 @@ class TextChunkSmall final bool operator==(const TextChunkSmall &restrict chunk) const restrict2; bool operator<(const TextChunkSmall &restrict chunk) const restrict2; - + void operator=(const TextChunkSmall &restrict chunk) restrict2; std::string text; Color color; Color color2; |