Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Constant.h

    r6b0b624 r62423350  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jul 22 09:54:46 2017
    13 // Update Count     : 17
     11// Last Modified By : Andrew Beach
     12// Last Modified On : Thr Jun 22 10:13:00 2017
     13// Update Count     : 15
    1414//
    1515
    16 #pragma once
     16#ifndef CONSTANT_H
     17#define CONSTANT_H
    1718
    1819#include "SynTree.h"
     
    4344        static Constant from_double( double d );
    4445
    45         /// generates a null pointer value for the given type. void * if omitted.
    46         static Constant null( Type * ptrtype = nullptr );
    47 
    4846        virtual void accept( Visitor & v ) { v.visit( this ); }
    4947        virtual Constant * acceptMutator( Mutator & m ) { return m.mutate( this ); }
     
    6058};
    6159
     60#endif // CONSTANT_H
     61
    6262// Local Variables: //
    6363// tab-width: 4 //
Note: See TracChangeset for help on using the changeset viewer.