Update of /cvsroot/monetdb/sql/src/server
In directory 
sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv16184/sql/src/server

Modified Files:
        sql_mvc.mx 
Log Message:

icc & msvs on windows (correctly) point out
...\sql\src\server\sql_mvc.mx(1142): error #118: a void function may not return 
a value
        drop_sql_idx(i->t, i->base.id);
        ^

both, caller mvc_drop_idx() & callee drop_sql_idx() are void functions;
hence, no need for a return, here.


Index: sql_mvc.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_mvc.mx,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -d -r1.232 -r1.233
--- sql_mvc.mx  10 Jan 2010 15:33:34 -0000      1.232
+++ sql_mvc.mx  11 Jan 2010 11:34:19 -0000      1.233
@@ -1139,7 +1139,7 @@
 
        if (i->t->persistence == SQL_DECLARED_TABLE)
                /* declared tables should not end up in the catalog */
-               return drop_sql_idx(i->t, i->base.id);
+               drop_sql_idx(i->t, i->base.id);
        else
                sql_trans_drop_idx(m->session->tr, s, i->base.id, 
DROP_RESTRICT);
 }


------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to