Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/modules/pftijah/tjc tjc_abssyn.h, , 1.4, 1.5
On Thu, Nov 27, 2008 at 12:38:18PM +0000, Jan Flokstra wrote:
Update of /cvsroot/monetdb/pathfinder/modules/pftijah/tjc In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7993
Modified Files: tjc_abssyn.h Log Message: - fix old_style extern fun() to extern fun(void)
Thanks. ... in case you're curious, icc now (correctly ;-)) complains about ======== .../pathfinder/modules/pftijah/tjc/tjc_parse.y(54): error #593: variable "tjc_errbuff" was set but never used static char* tjc_errbuff; ^ compilation aborted for tjc_parse.tab.c (code 2) ======== Stefan
Thanks Stefan.
U tjc_abssyn.h Index: tjc_abssyn.h =================================================================== RCS file: /cvsroot/monetdb/pathfinder/modules/pftijah/tjc/tjc_abssyn.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tjc_abssyn.h 27 Nov 2008 10:53:17 -0000 1.4 +++ tjc_abssyn.h 27 Nov 2008 12:38:15 -0000 1.5 @@ -123,7 +123,7 @@ tjcp_fixme (TJpnode_t *n1, TJpnode_t **n2);
extern struct TJqnode_t * -tjcq_initnode (); +tjcq_initnode (void);
extern struct TJqnode_t * tjcq_firstterm (char *term, char *entity, double weight); @@ -132,7 +132,7 @@ tjcq_addterm (TJqnode_t *n, char *term, char *entity, double weight);
extern struct TJptree_t * -tjcp_inittree (); +tjcp_inittree (void);
extern char * TJstrndup (const char *str);
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Monetdb-pf-checkins mailing list Monetdb-pf-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
On Thursday 27 November 2008 14:02, Stefan Manegold wrote:
On Thu, Nov 27, 2008 at 12:38:18PM +0000, Jan Flokstra wrote:
Update of /cvsroot/monetdb/pathfinder/modules/pftijah/tjc In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7993
Modified Files: tjc_abssyn.h Log Message: - fix old_style extern fun() to extern fun(void)
Thanks.
... in case you're curious, icc now (correctly ;-)) complains about ======== .../pathfinder/modules/pftijah/tjc/tjc_parse.y(54): error #593: variable "tjc_errbuff" was set but never used static char* tjc_errbuff; ^
Thanks, I fixed it. Hope this is the last one. This is when you get when 2 people do 1 project. Henning wrote the parser code and I had to integrate it and fix the problems, Jan.
compilation aborted for tjc_parse.tab.c (code 2) ========
Stefan
Thanks Stefan.
U tjc_abssyn.h Index: tjc_abssyn.h =================================================================== RCS file: /cvsroot/monetdb/pathfinder/modules/pftijah/tjc/tjc_abssyn.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tjc_abssyn.h 27 Nov 2008 10:53:17 -0000 1.4 +++ tjc_abssyn.h 27 Nov 2008 12:38:15 -0000 1.5 @@ -123,7 +123,7 @@ tjcp_fixme (TJpnode_t *n1, TJpnode_t **n2);
extern struct TJqnode_t * -tjcq_initnode (); +tjcq_initnode (void);
extern struct TJqnode_t * tjcq_firstterm (char *term, char *entity, double weight); @@ -132,7 +132,7 @@ tjcq_addterm (TJqnode_t *n, char *term, char *entity, double weight);
extern struct TJptree_t * -tjcp_inittree (); +tjcp_inittree (void);
extern char * TJstrndup (const char *str);
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Monetdb-pf-checkins mailing list Monetdb-pf-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins
On Thu, Nov 27, 2008 at 02:57:17PM +0100, Jan Flokstra wrote:
On Thursday 27 November 2008 14:02, Stefan Manegold wrote:
On Thu, Nov 27, 2008 at 12:38:18PM +0000, Jan Flokstra wrote:
Update of /cvsroot/monetdb/pathfinder/modules/pftijah/tjc In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7993
Modified Files: tjc_abssyn.h Log Message: - fix old_style extern fun() to extern fun(void)
Thanks.
... in case you're curious, icc now (correctly ;-)) complains about ======== .../pathfinder/modules/pftijah/tjc/tjc_parse.y(54): error #593: variable "tjc_errbuff" was set but never used static char* tjc_errbuff; ^
Thanks, I fixed it. Hope this is the last one.
Seems to compile fine, now. Thanks.
This is when you get when 2 people do 1 project. Henning wrote the parser code and I had to integrate it and fix the problems,
No problem. That's exactly why we have uatomatic nightly testing (... and some additional maneual testing ... ;-)) Stefan
Jan.
compilation aborted for tjc_parse.tab.c (code 2) ========
Stefan
Thanks Stefan.
U tjc_abssyn.h Index: tjc_abssyn.h =================================================================== RCS file: /cvsroot/monetdb/pathfinder/modules/pftijah/tjc/tjc_abssyn.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- tjc_abssyn.h 27 Nov 2008 10:53:17 -0000 1.4 +++ tjc_abssyn.h 27 Nov 2008 12:38:15 -0000 1.5 @@ -123,7 +123,7 @@ tjcp_fixme (TJpnode_t *n1, TJpnode_t **n2);
extern struct TJqnode_t * -tjcq_initnode (); +tjcq_initnode (void);
extern struct TJqnode_t * tjcq_firstterm (char *term, char *entity, double weight); @@ -132,7 +132,7 @@ tjcq_addterm (TJqnode_t *n, char *term, char *entity, double weight);
extern struct TJptree_t * -tjcp_inittree (); +tjcp_inittree (void);
extern char * TJstrndup (const char *str);
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Monetdb-pf-checkins mailing list Monetdb-pf-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins
------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Monetdb-developers mailing list Monetdb-developers@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-developers
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
participants (2)
-
Jan Flokstra
-
Stefan Manegold