diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-04 04:34:38 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-04 04:34:38 -0400 |
commit | 55b2fef58c764bc1755e2465811ade05f0babc9a (patch) | |
tree | ef04a7f76422e5306ca3b38b9c53ea409b18ac3e | |
parent | 9d4e888ef57ef70acb22830c5bfb5e917208113e (diff) | |
download | fork-ledger-55b2fef58c764bc1755e2465811ade05f0babc9a.tar.gz fork-ledger-55b2fef58c764bc1755e2465811ade05f0babc9a.tar.bz2 fork-ledger-55b2fef58c764bc1755e2465811ade05f0babc9a.zip |
Don't warn about old-style casts (e.g., Python.h)
-rwxr-xr-x | acprep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -220,7 +220,7 @@ while [ -n "$1" ]; do # These can cause problems when run against a full set of headers, # but with PCH, they only apply to Ledger itself CXXFLAGS="$CXXFLAGS -Wconversion" - CXXFLAGS="$CXXFLAGS -Wold-style-cast" + #CXXFLAGS="$CXXFLAGS -Wold-style-cast" # g++ 4.0.1 cannot use PCH headers on OS X 10.5, so we must use a # newer version. However, it also means I can't use GLIBCXX_DEBUG. |