File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -884,10 +884,7 @@ namespace Concurrency { namespace streams
884
884
if (ch == ' \n ' )
885
885
{
886
886
return buffer.bumpc ().then ([](
887
- #ifndef _WIN32 // Required by GCC
888
- typename
889
- #endif
890
- concurrency::streams::char_traits<CharType>::int_type) { return false ; });
887
+ typename concurrency::streams::char_traits<CharType>::int_type) { return false ; });
891
888
}
892
889
return pplx::task_from_result (false );
893
890
};
@@ -896,10 +893,7 @@ namespace Concurrency { namespace streams
896
893
{
897
894
while ( buffer.in_avail () > 0 )
898
895
{
899
- #ifndef _WIN32 // Required by GCC, because concurrency::streams::char_traits<CharType> is a dependent scope
900
- typename
901
- #endif
902
- concurrency::streams::char_traits<CharType>::int_type ch;
896
+ typename concurrency::streams::char_traits<CharType>::int_type ch;
903
897
904
898
if (_locals->saw_CR )
905
899
{
You can’t perform that action at this time.
0 commit comments