minor fixes
This commit is contained in:
parent
c49252ab45
commit
8d9e92023a
2
build.sh
2
build.sh
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue