Skip to content

Commit c7707aa

Browse files
committed
0.0f -> 0.0 for float64
1 parent cd59764 commit c7707aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ServerCodeExciserTest/Solutions/Common/DeclarationInFunctionRootScopeWithReturnValTest.common

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ class UDeclarationInFunctionRootScopeWithReturnValTest
6767
ensure(System::IsServer());
6868
#ifdef WITH_SERVER
6969

70-
float64 ThisMustBeGuarded = 0.0f;
70+
float64 ThisMustBeGuarded = 0.0;
7171
ThisMustBeGuarded--;
7272

7373
return ThisMustBeGuarded;
7474
#else
75-
return 0.0f;
75+
return 0.0;
7676
#endif // WITH_SERVER
7777
}
7878

0 commit comments

Comments
 (0)