diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 18:29:02 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 20:13:32 +0100 |
| commit | 78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 (patch) | |
| tree | 4539ba47695bc7b5fd974e2508067cb2fd168636 /editor/vobj-editor.cpp | |
| parent | 75508e3c03f659080df7db2211fb5a80cc1afeee (diff) | |
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'editor/vobj-editor.cpp')
| -rw-r--r-- | editor/vobj-editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/vobj-editor.cpp b/editor/vobj-editor.cpp index 0cfa64d6..f644ca1c 100644 --- a/editor/vobj-editor.cpp +++ b/editor/vobj-editor.cpp @@ -98,7 +98,7 @@ auto vobj_editor::make_vobj_type_map() -> std::map<String, vobj_> { constexpr auto add = [](auto& m, std::unique_ptr<vobj_factory>&& x) { StringView name = x->name(), descr = x->descr(); - m[name] = vobj_editor::vobj_{ name, descr, std::move(x) }; + m[name] = vobj_editor::vobj_{ name, descr, move(x) }; }; std::map<String, vobj_> map; add(map, std::make_unique<light_factory>()); |
