Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More missing includes (gcc 4.4) #4

Open
GoogleCodeExporter opened this issue Dec 12, 2015 · 3 comments
Open

More missing includes (gcc 4.4) #4

GoogleCodeExporter opened this issue Dec 12, 2015 · 3 comments

Comments

@GoogleCodeExporter
Copy link

intersect_classify_edge.cpp needs
#include <stdint.h> // for uint32_t

src/radiance.cp
#include <stdio.h>

src/model/ply_format.cpp
#include <stdio.h>
#include <cstring>

lib/math.cpp
#include <stdio.h>

src/model/vtk_format.cpp
#include <stdio.h>


Every instance of
t = strchr(l, k);
...was giving a compiler error
t = (char *)strchr(l, k);
...works ok



Original issue reported on code.google.com by [email protected] on 2 Jun 2009 at 2:36

@GoogleCodeExporter
Copy link
Author

I've fixed almost all of these, but could you please tell me what the specific 
error is when <cstring> isn't 
included in ply_format.cpp?

The correct fix for the strchr() issue is to assume that the return type is 
const char *.

Original comment by [email protected] on 2 Jun 2009 at 3:28

  • Changed state: Started

@GoogleCodeExporter
Copy link
Author

cstring is needed for strcmp()

Original comment by [email protected] on 2 Jun 2009 at 6:13

@GoogleCodeExporter
Copy link
Author

Issue 3 has been merged into this issue.

Original comment by [email protected] on 9 Jun 2009 at 1:24

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant