Changeset d1b9d78 for src/libcfa
- Timestamp:
- Jul 13, 2016, 1:44:00 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 9c791dd
- Parents:
- 8884112 (diff), ed9ecda (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. - Location:
- src/libcfa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r8884112 rd1b9d78 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Apr 10 23:00:12201613 // Update Count : 9 212 // Last Modified On : Tue Jul 12 18:01:09 2016 13 // Update Count : 93 14 14 // 15 15 … … 42 42 }; 43 43 44 // implement writable for someintrinsic types44 // implement writable for intrinsic types 45 45 46 46 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, char ); … … 67 67 68 68 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, ostype * (*)( ostype * ) ); 69 // manipulators 69 70 forall( dtype ostype | ostream( ostype ) ) ostype * endl( ostype * ); 70 71 forall( dtype ostype | ostream( ostype ) ) ostype * sepOn( ostype * ); -
src/libcfa/iostream.c
r8884112 rd1b9d78 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu May 26 10:08:31201613 // Update Count : 30 512 // Last Modified On : Tue Jul 12 18:01:39 2016 13 // Update Count : 306 14 14 // 15 15 … … 185 185 186 186 forall( dtype ostype | ostream( ostype ) ) 187 ostype * ?|?( ostype * os, ostype * (* manip)( ostype * ) ) {187 ostype * ?|?( ostype * os, ostype * (* manip)( ostype * ) ) { 188 188 return manip( os ); 189 189 } // ?|?
Note:
See TracChangeset
for help on using the changeset viewer.