- Timestamp:
- Jun 5, 2019, 5:58:38 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 3cd5fdd
- Parents:
- 2a8f0c1
- Location:
- src/AST
- Files:
-
- 3 edited
-
Print.hpp (modified) (1 diff)
-
SymbolTable.hpp (modified) (1 diff)
-
porting.md (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Print.hpp
r2a8f0c1 r99d4584 29 29 void print( std::ostream & os, const ast::Node * node, Indenter indent = {} ); 30 30 31 /// Wrap any standard format printer (matching above) with integer Indenter constructor32 template<typename T>33 inline void print( std::ostream & os, T && x, unsigned int indent ) {34 print( os, std::forward<T>(x), Indenter{ Indenter::tabsize, indent });35 }36 37 31 /// Print a declaration in its short form 38 32 void printShort( std::ostream & os, const ast::Decl * node, Indenter indent = {} ); 39 33 40 34 inline void printShort( std::ostream & os, const ast::Decl * node, unsigned int indent ) { 41 printShort( os, node, Indenter{ Indenter::tabsize,indent } );35 printShort( os, node, Indenter{ indent } ); 42 36 } 43 37 -
src/AST/SymbolTable.hpp
r2a8f0c1 r99d4584 85 85 86 86 public: 87 explicitSymbolTable();87 SymbolTable(); 88 88 ~SymbolTable(); 89 89 -
src/AST/porting.md
r2a8f0c1 r99d4584 295 295 * changed `WidenMode widenMode` => `WidenMode widen` 296 296 297 `Alternative` => `Candidate` 298 * `openVars` => `open` 299 297 300 [1] https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Type-Attributes.html#Type-Attributes 298 301
Note:
See TracChangeset
for help on using the changeset viewer.