Changeset 319 for cpp/frams/genetics/fF


Ignore:
Timestamp:
02/01/15 01:08:50 (9 years ago)
Author:
Maciej Komosinski
Message:

Fixed compilation warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/fF/conv_fF.cpp

    r286 r319  
    104104                double pcx = chambers[which - 1]->centerX;
    105105                double pcy = chambers[which - 1]->centerY;
    106                 double pcz = chambers[which - 1]->centerZ;
     106                //double pcz = chambers[which - 1]->centerZ; //not used
    107107
    108108                /* aperture of the next to last chamber */
    109109                double ppx;
    110110                double ppy;
    111                 double ppz;
     111                //double ppz; //not used
    112112
    113113                if (which == 1)
     
    115115                        ppx = pcx;
    116116                        ppy = pcy;
    117                         ppz = pcz;
     117                        //ppz = pcz;
    118118                }
    119119                else
     
    121121                        ppx = chambers[which - 2]->holeX;
    122122                        ppy = chambers[which - 2]->holeY;
    123                         ppz = chambers[which - 2]->holeZ;
     123                        //ppz = chambers[which - 2]->holeZ;
    124124                }
    125125
Note: See TracChangeset for help on using the changeset viewer.