We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb43f5a commit bc27d9cCopy full SHA for bc27d9c
libcxx/utils/libcxx/test/modules.py
@@ -76,6 +76,13 @@
76
# This declaration is in the ostream header.
77
ExtraDeclarations["system_error"] = ["std::operator<<"]
78
79
+# TODO MODULES avoid this work-around
80
+# This is a work-around for the special math functions. They are declared in
81
+# __math/special_functions.h. Adding this as an ExtraHeader works for the std
82
+# module. However these functions are special; they are not available in the
83
+# global namespace.
84
+ExtraDeclarations["cmath"] = ["std::hermite", "std::hermitef", "std::hermitel"]
85
+
86
### ExtraHeader
87
88
# Adds extra headers file to scan
0 commit comments