diff options
author | Wade Walker <[email protected]> | 2014-03-02 12:16:42 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2014-03-02 12:16:42 -0600 |
commit | 9d6418135370a8ce1d5c63196011b1354a8e8022 (patch) | |
tree | 0e42d6595e4921de05659d6d4182ceefff41c63f /make/build.xml | |
parent | 7711ab577405415b7c176455a152a1cbc4dff5f7 (diff) |
Fix C build warnings.
Fixes -fno-rtti and implicit cast warnings. After this commit,
all C warnings are gone except for one due to gluegen emitting
char pointers instead of unsigned char pointers.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index 0f796e3a..ff903aa8 100644 --- a/make/build.xml +++ b/make/build.xml @@ -625,8 +625,7 @@ optimize="${c.compiler.optimise}" debug="${c.compiler.debug}" multithreaded="true" - exceptions="false" - rtti="false"> + exceptions="false"> <fileset dir="${project.root}"> <patternset refid="c.src.files"/> |