Changes in src/SynTree/Constant.h [cb4c607:9d7b3ea]
- File:
-
- 1 edited
-
src/SynTree/Constant.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Constant.h
rcb4c607 r9d7b3ea 33 33 34 34 /// generates an integer constant of the given int 35 static Constant from _int( int i );35 static Constant from( int i ); 36 36 /// generates an integer constant of the given unsigned long int 37 static Constant from _ulong( unsigned long i );37 static Constant from( unsigned long i ); 38 38 /// generates a floating point constant of the given double 39 static Constant from _double( double d );39 static Constant from( double d ); 40 40 41 41 virtual Constant *clone() const;
Note:
See TracChangeset
for help on using the changeset viewer.