Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Constant.cc

    r9d7b3ea r7f5566b  
    1616#include <iostream>
    1717#include <list>
    18 #include <string>
    1918
    2019#include "Constant.h"
     
    2928
    3029Constant::~Constant() { delete type; }
    31 
    32 Constant Constant::from( int i ) {
    33         return Constant( new BasicType( Type::Qualifiers(), BasicType::SignedInt ), std::to_string( i ) );
    34 }
    35 
    36 Constant Constant::from( unsigned long i ) {
    37         return Constant( new BasicType( Type::Qualifiers(), BasicType::LongUnsignedInt ), std::to_string( i ) );
    38 }
    39 
    40 Constant Constant::from( double d ) {
    41         return Constant( new BasicType( Type::Qualifiers(), BasicType::Double ), std::to_string( d ) );
    42 }
    4330
    4431Constant *Constant::clone() const { assert( false ); return 0; }
Note: See TracChangeset for help on using the changeset viewer.