OutpostUniverse / OP2Utility

C++ library for working with Outpost 2 related files and tasks.
MIT License
4 stars 0 forks source link

Fix move warning within FileWriter #337

Closed Brett208 closed 4 years ago

Brett208 commented 4 years ago

I think the warning is telling me that the move isn't happening anyways because the source is labeled const? Not so sure about this one.

Warning C26478 Don't use std::move on constant variables. (es.56). OP2Utility \OP2UTILITY\SRC\STREAM\FILEWRITER.CPP 67

https://docs.microsoft.com/en-us/visualstudio/code-quality/c26478

Brett208 commented 4 years ago

I think marking class member variables as const is pretty clear cut in C# which probably influences me.