~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/libcxx/istream

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1144
1144
                       break;
1145
1145
                    }
1146
1146
                    ++__gc_;
1147
 
                    char_type __ch = traits_type::to_char_type(__i);
1148
 
                    if (traits_type::eq(__ch, static_cast<char_type>(__dlm)))
 
1147
                    if (traits_type::eq_int_type(__i, __dlm))
1149
1148
                        break;
1150
1149
                }
1151
1150
            }
1160
1159
                       break;
1161
1160
                    }
1162
1161
                    ++__gc_;
1163
 
                    char_type __ch = traits_type::to_char_type(__i);
1164
 
                    if (traits_type::eq(__ch, static_cast<char_type>(__dlm)))
 
1162
                    if (traits_type::eq_int_type(__i, __dlm))
1165
1163
                        break;
1166
1164
                }
1167
1165
            }