aboutsummaryrefslogtreecommitdiff
path: root/system/include
diff options
context:
space:
mode:
authorBenoitT <benoit.tremblay@frimastudio.com>2011-10-21 10:00:35 -0300
committerBenoitT <benoit.tremblay@frimastudio.com>2011-10-21 10:00:35 -0300
commitaa76bb60a1f8bfa8fe848f704ba4d2958d262fb7 (patch)
tree56664a99aad5374cd3126c7e3f57eb9e0e32d702 /system/include
parent08afd7358aa3ce51a0444153da45f3d2bcd6d40f (diff)
Added XXX Emscripten comments
Diffstat (limited to 'system/include')
-rw-r--r--system/include/libcxx/ios8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/include/libcxx/ios b/system/include/libcxx/ios
index 1ed7bb40..29bda558 100644
--- a/system/include/libcxx/ios
+++ b/system/include/libcxx/ios
@@ -317,7 +317,7 @@ public:
_LIBCPP_INLINE_VISIBILITY bool bad() const;
_LIBCPP_INLINE_VISIBILITY iostate exceptions() const;
- _LIBCPP_INLINE_VISIBILITY void exceptions(iostate except);
+ _LIBCPP_INLINE_VISIBILITY void exceptions(iostate except); /* XXX Emscripten: renammed __except to except because it is a reserved keyword */
void __set_badbit_and_consider_rethrow();
void __set_failbit_and_consider_rethrow();
@@ -553,9 +553,9 @@ ios_base::exceptions() const
inline _LIBCPP_INLINE_VISIBILITY
void
-ios_base::exceptions(iostate except)
+ios_base::exceptions(iostate except) /* XXX Emscripten: renammed __except to except because it is a reserved keyword */
{
- __exceptions_ = except;
+ __exceptions_ = except; /* XXX Emscripten: renammed __except to except because it is a reserved keyword */
clear(__rdstate_);
}
@@ -584,7 +584,7 @@ public:
_LIBCPP_ALWAYS_INLINE bool bad() const {return ios_base::bad();}
_LIBCPP_ALWAYS_INLINE iostate exceptions() const {return ios_base::exceptions();}
- _LIBCPP_ALWAYS_INLINE void exceptions(iostate except) {ios_base::exceptions(except);}
+ _LIBCPP_ALWAYS_INLINE void exceptions(iostate except) {ios_base::exceptions(except);} /* XXX Emscripten: renammed __except to except because it is a reserved keyword */
// 27.5.4.1 Constructor/destructor:
_LIBCPP_INLINE_VISIBILITY