You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MSVC will remove some transitive includes from STL headers in this release. After doing so, the autowiring build will fail and report that there is no runtime_error in namespace std when compiling line 447 of auto_signal.h. The fix is quite simple: this header now needs to include <stdexcept> directly.
The text was updated successfully, but these errors were encountered:
CaseyCarter
added a commit
to CaseyCarter/autowiring
that referenced
this issue
Dec 19, 2019
MSVC will remove some transitive includes from STL headers in this release. After doing so, the autowiring build will fail and report that there is no
runtime_error
in namespacestd
when compiling line 447 ofauto_signal.h
. The fix is quite simple: this header now needs to include<stdexcept>
directly.The text was updated successfully, but these errors were encountered: