Changeset 6de9f4a for src/libcfa/iostream
- Timestamp:
- Sep 11, 2017, 5:15:47 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, 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:
- cd218e8
- Parents:
- 7b1d5ec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r7b1d5ec r6de9f4a 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.