Fix build with Clang.

This commit is contained in:
Roman Telezhynskyi 2023-01-16 18:04:01 +02:00
parent 80ba9e9961
commit 7ea8441271

View file

@ -79,8 +79,8 @@ public:
auto operator=(const VTextManager &text) -> VTextManager & = default;
#ifdef Q_COMPILER_RVALUE_REFS
VTextManager(VTextManager &&text) Q_DECL_NOTHROW = default;
auto operator=(VTextManager &&text) Q_DECL_NOTHROW -> VTextManager & = default;
VTextManager(VTextManager &&text) = default;
auto operator=(VTextManager &&text) -> VTextManager & = default;
#endif
virtual auto GetSpacing() const -> int;