Changeset: 08fb5dbd6027 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/08fb5dbd6027
Modified Files:
        monetdb5/optimizer/opt_remap.c
Branch: Jan2022
Log Message:

More const


diffs (16 lines):

diff --git a/monetdb5/optimizer/opt_remap.c b/monetdb5/optimizer/opt_remap.c
--- a/monetdb5/optimizer/opt_remap.c
+++ b/monetdb5/optimizer/opt_remap.c
@@ -330,9 +330,9 @@ terminateMX:
  * The comparison multiplex operations with a constant head may be supported
  * by reverse of the operation.
  */
-static struct{
-       char *src, *dst;
-       int len;
+static const struct{
+       const char *src, *dst;
+       const int len;
 }OperatorMap[]={
 {"<", ">",1},
 {">", "<",1},
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to