Commit 8cacb3c9 authored by tzik's avatar tzik Committed by Commit Bot

Use noexcept consistently on media::learning::Instance ctor

Change-Id: I70abcd04649b4f91cba16ff364a61378e6ac0f0f
Reviewed-on: https://chromium-review.googlesource.com/c/1291189Reviewed-by: default avatarFrank Liberato <liberato@chromium.org>
Commit-Queue: Taiju Tsuiki <tzik@chromium.org>
Cr-Commit-Position: refs/heads/master@{#601865}
parent 892067a4
......@@ -9,7 +9,7 @@ namespace learning {
Instance::Instance() = default;
Instance::~Instance() = default;
Instance::Instance(Instance&& rhs) {
Instance::Instance(Instance&& rhs) noexcept {
features = std::move(rhs.features);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment