Changeset 2bf04b in git for factory/parseutil.cc


Ignore:
Timestamp:
Nov 12, 2015, 2:39:46 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
6da2d6765f8866f8426131bf3a097a5c051e956e
Parents:
412c61b77c65fd4adca8f6576d7f1a597459552e
Message:
format
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/parseutil.cc

    r412c61 r2bf04b  
    8383    static PUtilBase * create( const char * str )
    8484    {
    85         if ( strlen( str ) < 9 )
    86             return new PUtilInt( atoi( str ) );
    87         else
    88             return new PUtilCF( CanonicalForm( str ) );
     85        if ( strlen( str ) < 9 )
     86            return new PUtilInt( atoi( str ) );
     87        else
     88            return new PUtilCF( CanonicalForm( str ) );
    8989    }
    9090};
     
    123123{
    124124    if ( this != &pu ) {
    125         delete value;
    126         value = pu.value->copy();
     125        delete value;
     126        value = pu.value->copy();
    127127    }
    128128    return *this;
Note: See TracChangeset for help on using the changeset viewer.