[ripple/rippled] Mark move constructors and move assignment operators as noexcept (#2551)
JoeLoser commented on this pull request.
> @@ -35,7 +35,7 @@ STObject::~STObject()
#endif
}
-STObject::STObject(STObject&& other)
+STObject::STObject(STObject&& other) noexcept
: STBase(other.getFName())
Another good catch. Fixed in f1e59f075