Commit 0b33c562 authored by Michael Meskes's avatar Michael Meskes

Not all C compilers understand the "//" comment in this test case, so I removed it.

parent 460f4681
...@@ -27,19 +27,16 @@ ...@@ -27,19 +27,16 @@
/* Test comment */ /* Test comment */
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
// we also understand this style
int k;
int main(void) int main(void)
{ {
ECPGdebug(1, stderr); ECPGdebug(1, stderr);
{ ECPGconnect(__LINE__, 0, "regress1" , NULL,NULL , NULL, 0); } { ECPGconnect(__LINE__, 0, "regress1" , NULL,NULL , NULL, 0); }
#line 20 "comment.pgc" #line 17 "comment.pgc"
{ ECPGdisconnect(__LINE__, "CURRENT");} { ECPGdisconnect(__LINE__, "CURRENT");}
#line 22 "comment.pgc" #line 19 "comment.pgc"
exit (0); exit (0);
} }
......
...@@ -9,9 +9,6 @@ exec sql include ../regression; ...@@ -9,9 +9,6 @@ exec sql include ../regression;
/* Test comment */ /* Test comment */
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
// we also understand this style
int k;
int main(void) int main(void)
{ {
ECPGdebug(1, stderr); ECPGdebug(1, stderr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment