diff --git a/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp b/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp index 1fdcf2907..01ea1feda 100644 --- a/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp +++ b/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp @@ -488,7 +488,7 @@ namespace storm { auto timeInMilliseconds = std::chrono::duration_cast(end - start).count(); STORM_LOG_DEBUG("Computed qualitative solution in " << timeInMilliseconds << "ms."); - return result; + return std::move(result); // move() required by, e.g., clang 3.8 } template @@ -598,7 +598,7 @@ namespace storm { } STORM_LOG_DEBUG("Computed qualitative solution in " << timeInMilliseconds << "ms."); - return result; + return std::move(result); // move() required by, e.g., clang 3.8 } template @@ -644,7 +644,7 @@ namespace storm { auto timeInMilliseconds = std::chrono::duration_cast(end - start).count(); STORM_LOG_DEBUG("Computed qualitative solution in " << timeInMilliseconds << "ms."); - return result; + return std::move(result); // move() required by, e.g., clang 3.8 } template