Turning on clang tidy performance-*

Summary:
changelog: [internal]

Enable performance related clang tidy rules.

Reviewed By: javache

Differential Revision: D33350556

fbshipit-source-id: 486446ed0a1ac88af21b691ac6905b4f2359dafc
This commit is contained in:
Samuel Susla
2022-01-05 05:53:13 -08:00
committed by Facebook GitHub Bot
parent d016766303
commit 681ed402de
34 changed files with 96 additions and 75 deletions
@@ -54,7 +54,7 @@ std::shared_ptr<void> AttributedStringBox::getOpaquePointer() const {
}
AttributedStringBox &AttributedStringBox::operator=(
AttributedStringBox &&other) {
AttributedStringBox &&other) noexcept {
if (this != &other) {
mode_ = other.mode_;
value_ = std::move(other.value_);