Changeset 7ec0614 in git for Singular/ipid.cc


Ignore:
Timestamp:
Oct 26, 2010, 12:06:40 PM (14 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a53ae5000c439608b9dcf884b63d62b219e8fcc0
Parents:
f7449ff74c2f2331426674adbf6689f8bb8c3e8c
Message:
took out type 'fan'; now only type 'cone' is there when built with HAVE_FANS defined (by default, HAVE_FANS is undefined)


git-svn-id: file:///usr/local/Singular/svn/trunk@13569 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipid.cc

    rf7449f r7ec0614  
    2929#include <kernel/syz.h>
    3030#include <Singular/ipid.h>
    31 #include <Singular/Fan.h>
    3231#include <gfanlib/gfanlib.h>
    3332
     
    202201    }
    203202#ifdef HAVE_FANS
     203/*
    204204    else if (t == FAN_CMD)
    205205    {
    206206      IDSTRING(h) = (char*)(new Fan());
    207     }
     207    }*/
    208208    else if (t == CONE_CMD)
    209209    {
     
    478478#ifdef HAVE_FANS
    479479  // fan -------------------------------------------------------------
    480   else if (IDTYP(h) == FAN_CMD)
     480/*  else if (IDTYP(h) == FAN_CMD)
    481481  {
    482482    Fan* fff = (Fan*)IDDATA(h);
    483483    delete fff;
    484484    IDDATA(h) = NULL;
    485   }
     485  }*/
    486486  // cone ------------------------------------------------------------
    487487  else if (IDTYP(h) == CONE_CMD)
    488488  {
    489     Cone* ccc = (Cone*)IDDATA(h);
    490     delete ccc;
     489    gfan::ZCone* zc = (gfan::ZCone*)IDDATA(h);
     490    delete zc;
    491491    IDDATA(h) = NULL;
    492492  }
Note: See TracChangeset for help on using the changeset viewer.