Browse Source

* use cextended instead of clongdouble, so that the tests keeps compiling
for platforms where we don't support the "long double" type

git-svn-id: trunk@31883 -

Jonas Maebe 9 years ago
parent
commit
e25c5b809e
3 changed files with 3 additions and 3 deletions
  1. 1 1
      tests/test/cg/tprintf.pp
  2. 1 1
      tests/test/cg/tprintf2.pp
  3. 1 1
      tests/test/cg/tprintf3.pp

+ 1 - 1
tests/test/cg/tprintf.pp

@@ -54,7 +54,7 @@ const
   s2 : pchar = 'next';
   si : single = 32.12;
   d : double = 45.45;
-  e : clongdouble = 74.74;
+  e : cextended = 74.74;
   p : pchar = nil;
   has_errors : boolean = false;
 

+ 1 - 1
tests/test/cg/tprintf2.pp

@@ -54,7 +54,7 @@ const
   s2 : pchar = 'next';
   si : single = 32.12;
   d : double = 45.45;
-  e : clongdouble = 74.74;
+  e : cextended = 74.74;
   p : pchar = nil;
   has_errors : boolean = false;
 

+ 1 - 1
tests/test/cg/tprintf3.pp

@@ -39,7 +39,7 @@ const
   s2 : pchar = 'next';
   si : single = 32.12;
   d : double = 45.45;
-  e : clongdouble = 74.74;
+  e : cextended = 74.74;
   p : pchar = nil;
   has_errors : boolean = false;