Skip to content
Snippets Groups Projects
Commit edc935a6 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Add noexcept to move constructors and assignment operators.

Bug: 116614593
Test: build with WITH_TIDY=1
Change-Id: I4adaf89db5001e9b627beac8160f62b50513d18f
parent b4c60b23
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ class OwnedArrayWrapper {
explicit OwnedArrayWrapper(T* o) : ptr_(o) {}
~OwnedArrayWrapper() { delete[] ptr_; }
T* get() const { return ptr_; }
OwnedArrayWrapper(OwnedArrayWrapper&& other) {
OwnedArrayWrapper(OwnedArrayWrapper&& other) noexcept {
ptr_ = other.ptr_;
other.ptr_ = NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment