minor fixes

This commit is contained in:
Markus Gans 2019-07-14 23:21:49 +02:00
parent c49252ab45
commit 8d9e92023a
3 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ case "$1" in
;; ;;
"--coverage"|"coverage") "--coverage"|"coverage")
if ! ./configure --prefix="$PREFIX" CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG" --with-unit-test --with-gcov if ! ./configure --prefix="$PREFIX" CPPFLAGS="-DDEBUG" CXXFLAGS="-g -O0 -DDEBUG -DUNIT_TEST" --with-unit-test --with-gcov
then then
echo "${RED}Configure failed!${NORMAL}" 1>&2 echo "${RED}Configure failed!${NORMAL}" 1>&2
exit 255 exit 255

View File

@ -586,7 +586,7 @@ FObject::FObjectIterator
, [] (const T& col) -> const FString , [] (const T& col) -> const FString
{ {
const FString s = FString() << col; const FString s = FString() << col;
return std::move(s); return s;
} }
); );
@ -622,7 +622,7 @@ FObject::FObjectIterator
, [] (const ColT& col) -> const FString , [] (const ColT& col) -> const FString
{ {
const FString s = FString() << col; const FString s = FString() << col;
return std::move(s); return s;
} }
); );