Changeset 476

Show
Ignore:
Timestamp:
09/09/09 14:01:14 (15 years ago)
Author:
bhilburn
Message:

I have no idea how this was getting past the compiler.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/include/vtcross/cbr.h

    r472 r476  
    132132    command = "CREATE TABLE " + tablename + "("; 
    133133    for(size_t i = 0; i < numColumns; i++) { 
    134         command += _cols[i]; 
    135         command += " FLOAT"; 
     134        command += _cols[i] + " FLOAT"; 
    136135 
    137136        /* If this column is not the last entry, add a comma to the command in 
     
    163162    command = "CREATE TABLE " + tablename + "("; 
    164163    for(size_t i = 0; i < numColumns; i++) { 
    165         command += _cols[i]; 
    166         command += " FLOAT, "; 
     164        command += _cols[i] + " FLOAT"; 
    167165    } 
    168166 
     
    280278        } 
    281279 
    282         command += _names[i] + ops_str[_ops[i]];; 
     280        command += _names[i] + ops_str[_ops[i]]; 
    283281 
    284282        LOG("CBR::Search - command: %s\n", command.c_str()); 
     
    321319        } 
    322320 
    323         command += _names[i] + ops_str[_ops[i]];; 
     321        command += _names[i] + ops_str[_ops[i]]; 
    324322 
    325323        sprintf(str_buffer, "%E", _vals[i]);