8000
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 e901ff8 commit a8d1c25Copy full SHA for a8d1c25
ports/unix/coveragecpp.cpp
@@ -1,5 +1,20 @@
1
extern "C" {
2
-#include "py/obj.h"
+// Include the complete public API to verify everything compiles as C++.
3
+#include <py/gc.h>
4
+#include <py/obj.h>
5
+#include <py/objarray.h>
6
+#include <py/objexcept.h>
7
+#include <py/objfun.h>
8
+#include <py/objgenerator.h>
9
+#include <py/objint.h>
10
+#include <py/objlist.h>
11
+#include <py/objmodule.h>
12
+#include <py/objnamedtuple.h>
13
+#include <py/objstr.h>
14
+#include <py/objstringio.h>
15
+#include <py/objtuple.h>
16
+#include <py/objtype.h>
17
+#include <py/runtime.h>
18
}
19
20
#if defined(MICROPY_UNIX_COVERAGE)
0 commit comments