Changes in src/libcfa/iostream.c [b6dc097:44574f2]
- File:
-
- 1 edited
-
src/libcfa/iostream.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/iostream.c
rb6dc097 r44574f2 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Apr 28 13:08:25201813 // Update Count : 46 912 // Last Modified On : Thu Jan 25 13:09:28 2018 13 // Update Count : 467 14 14 // 15 15 … … 193 193 } // ?|? 194 194 195 //forall( dtype ostype | ostream( ostype ) )196 //ostype & ?|?( ostype & os, const char16_t * str ) {197 //if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );198 //fmt( os, "%ls", str );199 //return os;200 //} // ?|?201 202 //#if ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 ) // char32_t == wchar_t => ambiguous203 //forall( dtype ostype | ostream( ostype ) )204 //ostype & ?|?( ostype & os, const char32_t * str ) {205 //if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );206 //fmt( os, "%ls", str );207 //return os;208 //} // ?|?209 //#endif // ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 )210 211 //forall( dtype ostype | ostream( ostype ) )212 //ostype & ?|?( ostype & os, const wchar_t * str ) {213 //if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );214 //fmt( os, "%ls", str );215 //return os;216 //} // ?|?195 forall( dtype ostype | ostream( ostype ) ) 196 ostype & ?|?( ostype & os, const char16_t * str ) { 197 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 198 fmt( os, "%ls", str ); 199 return os; 200 } // ?|? 201 202 #if ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 ) // char32_t == wchar_t => ambiguous 203 forall( dtype ostype | ostream( ostype ) ) 204 ostype & ?|?( ostype & os, const char32_t * str ) { 205 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 206 fmt( os, "%ls", str ); 207 return os; 208 } // ?|? 209 #endif // ! ( __ARM_ARCH_ISA_ARM == 1 && __ARM_32BIT_STATE == 1 ) 210 211 forall( dtype ostype | ostream( ostype ) ) 212 ostype & ?|?( ostype & os, const wchar_t * str ) { 213 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 214 fmt( os, "%ls", str ); 215 return os; 216 } // ?|? 217 217 218 218 forall( dtype ostype | ostream( ostype ) )
Note:
See TracChangeset
for help on using the changeset viewer.