mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Add noexcept to move constructors and assignment operators.
Bug: 116614593 Test: build with WITH_TIDY=1 Change-Id: Ic2a04f82f36c2f7fe43109a7a74270044d227789
This commit is contained in:
parent
0b6bd00834
commit
66a88a5eae
@ -35,7 +35,7 @@ class BinaryDictionaryBigramsIterator {
|
||||
mBigramPos(NOT_A_DICT_POS), mProbability(NOT_A_PROBABILITY),
|
||||
mHasNext(pos != NOT_A_DICT_POS) {}
|
||||
|
||||
BinaryDictionaryBigramsIterator(BinaryDictionaryBigramsIterator &&bigramsIterator)
|
||||
BinaryDictionaryBigramsIterator(BinaryDictionaryBigramsIterator &&bigramsIterator) noexcept
|
||||
: mBigramsStructurePolicy(bigramsIterator.mBigramsStructurePolicy),
|
||||
mPos(bigramsIterator.mPos), mBigramPos(bigramsIterator.mBigramPos),
|
||||
mProbability(bigramsIterator.mProbability), mHasNext(bigramsIterator.mHasNext) {}
|
||||
|
@ -31,7 +31,7 @@ class BinaryDictionaryShortcutIterator {
|
||||
mPos(shortcutStructurePolicy->getStartPos(shortcutPos)),
|
||||
mHasNextShortcutTarget(shortcutPos != NOT_A_DICT_POS) {}
|
||||
|
||||
BinaryDictionaryShortcutIterator(const BinaryDictionaryShortcutIterator &&shortcutIterator)
|
||||
BinaryDictionaryShortcutIterator(const BinaryDictionaryShortcutIterator &&shortcutIterator) noexcept
|
||||
: mShortcutStructurePolicy(shortcutIterator.mShortcutStructurePolicy),
|
||||
mPos(shortcutIterator.mPos),
|
||||
mHasNextShortcutTarget(shortcutIterator.mHasNextShortcutTarget) {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user