diff options
Diffstat (limited to 'loader/texture.cpp')
-rw-r--r-- | loader/texture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/texture.cpp b/loader/texture.cpp index e93b21af..0da6f1e7 100644 --- a/loader/texture.cpp +++ b/loader/texture.cpp @@ -40,7 +40,7 @@ Trade::ImageData2D loader_impl::texture(StringView prefix, StringView filename_) auto img = importer->image2D(0); if (!img) fm_abort("can't allocate image for '%s'", buf); - auto ret = std::move(*img); + auto ret = move(*img); return ret; } } |