Changes in src/libcfa/iostream [6de9f4a:7bc4e6b]
- File:
-
- 1 edited
-
src/libcfa/iostream (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream
r6de9f4a r7bc4e6b 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Sep 11 09:17:07201713 // Update Count : 13 712 // Last Modified On : Thu Aug 24 08:14:29 2017 13 // Update Count : 133 14 14 // 15 15 16 16 #pragma once 17 17 18 #include <uchar.h>19 #include <wchar.h>20 18 #include "iterator" 21 19 … … 80 78 81 79 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 * );85 80 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, const void * ); 86 81 … … 123 118 124 119 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 & );127 120 128 121 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, short int & );
Note:
See TracChangeset
for help on using the changeset viewer.