Changeset 982832e for src/libcfa/iostream
- Timestamp:
- Sep 13, 2017, 2:44:01 PM (8 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:
- ba54f7d, c935c3a
- Parents:
- e3e16bc (diff), 7dc09294 (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/libcfa/iostream
re3e16bc r982832e 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Aug 24 08:14:29201713 // Update Count : 13 312 // Last Modified On : Mon Sep 11 09:17:07 2017 13 // Update Count : 137 14 14 // 15 15 16 16 #pragma once 17 17 18 #include <uchar.h> 19 #include <wchar.h> 18 20 #include "iterator" 19 21 … … 78 80 79 81 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char * ); 82 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char16_t * ); 83 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const char32_t * ); 84 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const wchar_t * ); 80 85 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * ); 81 86 … … 118 123 119 124 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, char & ); 125 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, signed char & ); 126 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, unsigned char & ); 120 127 121 128 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int & );
Note:
See TracChangeset
for help on using the changeset viewer.