Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions stl/inc/exception
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public:
virtual __CLR_OR_THIS_CALL ~bad_exception() noexcept {}

protected:
virtual void __CLR_OR_THIS_CALL _Doraise() const { // raise this exception
virtual void __CLR_OR_THIS_CALL _Doraise() const override { // raise this exception
_RAISE(*this);
}
};
Expand All @@ -149,7 +149,7 @@ private:
}

protected:
virtual void __CLR_OR_THIS_CALL _Doraise() const { // perform class-specific exception handling
virtual void __CLR_OR_THIS_CALL _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
};
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/execution
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ struct _Parallelism_resources_exhausted : exception {

#if !_HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // !_HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/experimental/filesystem
Original file line number Diff line number Diff line change
Expand Up @@ -1374,7 +1374,7 @@ private:

#else // _HAS_EXCEPTIONS
protected:
virtual __CLR_OR_THIS_CALL void _Doraise() const { // perform class-specific exception handling
virtual __CLR_OR_THIS_CALL void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/filesystem
Original file line number Diff line number Diff line change
Expand Up @@ -1798,7 +1798,7 @@ namespace filesystem {

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/future
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/optional
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public:

#if !_HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // !_HAS_EXCEPTIONS
Expand Down
18 changes: 9 additions & 9 deletions stl/inc/stdexcept
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -50,7 +50,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -69,7 +69,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -88,7 +88,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -107,7 +107,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -126,7 +126,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -145,7 +145,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -164,7 +164,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand All @@ -183,7 +183,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/system_error
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down
4 changes: 2 additions & 2 deletions stl/inc/typeinfo
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public:
virtual ~bad_cast() noexcept {}

protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
};
Expand All @@ -50,7 +50,7 @@ public:
virtual ~bad_typeid() noexcept {}

protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
};
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/variant
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ public:

#if !_HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // perform class-specific exception handling
virtual void _Doraise() const override { // perform class-specific exception handling
_RAISE(*this);
}
#endif // !_HAS_EXCEPTIONS
Expand Down
2 changes: 1 addition & 1 deletion stl/inc/xiosbase
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public:

#else // _HAS_EXCEPTIONS
protected:
virtual void _Doraise() const { // report the exception
virtual void _Doraise() const override { // report the exception
_RAISE(*this);
}
#endif // _HAS_EXCEPTIONS
Expand Down