Changeset fc12f05 for src/CodeGen/GenType.h
- Timestamp:
- Nov 13, 2023, 3:43:43 AM (23 months ago)
- Branches:
- master
- Children:
- 25f2798
- Parents:
- 0030b508 (diff), 2174191 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/GenType.h
r0030b508 rfc12f05 21 21 22 22 class Type; 23 namespace ast { 24 class Type; 25 } 23 26 24 27 namespace CodeGen { … … 26 29 std::string genType( Type *type, const std::string &baseString, bool pretty = false, bool genC = false, bool lineMarks = false ); 27 30 std::string genPrettyType( Type * type, const std::string & baseString ); 31 32 std::string genType( ast::Type const * type, const std::string & base, const Options & options ); 33 std::string genTypeNoAttr( ast::Type const * type, const std::string & base, const Options & options ); 34 28 35 } // namespace CodeGen 29 36
Note:
See TracChangeset
for help on using the changeset viewer.