Changeset ea6332d for src/SynTree/Constant.cc
- Timestamp:
- Aug 15, 2017, 11:59:15 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- be9288a
- Parents:
- d180746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Constant.cc
rd180746 rea6332d 14 14 // 15 15 16 #include < iostream>17 #include < list>18 #include <string> 16 #include <cassert> // for safe_dynamic_cast, assertf 17 #include <iostream> // for operator<<, ostream, basic_ostream 18 #include <string> // for to_string, string, char_traits, operator<< 19 19 20 20 #include "Constant.h" 21 #include "Type.h" 21 #include "Type.h" // for BasicType, Type, Type::Qualifiers, PointerType 22 22 23 23 Constant::Constant( Type * type, std::string rep, unsigned long long val ) : type( type ), rep( rep ), val( val ) {}
Note: See TracChangeset
for help on using the changeset viewer.