jmartiuk5 / python-on-a-chip

Automatically exported from code.google.com/p/python-on-a-chip
Other
0 stars 0 forks source link

Fix C_NULL for C++ compiler #256

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Compiling for mbed using mbed.org's online compiler results in build errors.

The problem is that C_NULL is declared as ((void *)0) which is okay for C, but 
not C++.

The fix is to declare C_NULL as (0)

Original issue reported on code.google.com by dwhall...@gmail.com on 19 Nov 2013 at 2:35

GoogleCodeExporter commented 8 years ago
This issue was closed by revision fc03700a593e.

Original comment by dwhall...@gmail.com on 19 Nov 2013 at 2:36

GoogleCodeExporter commented 8 years ago
Reopened to apply to v10 branch, too.

Original comment by dwhall...@gmail.com on 19 Nov 2013 at 2:37

GoogleCodeExporter commented 8 years ago
This issue was closed by revision 6ebd7e8ffbc0.

Original comment by dwhall...@gmail.com on 19 Nov 2013 at 2:38