summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-03-04 04:34:38 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-03-04 04:34:38 -0400
commit55b2fef58c764bc1755e2465811ade05f0babc9a (patch)
treeef04a7f76422e5306ca3b38b9c53ea409b18ac3e
parent9d4e888ef57ef70acb22830c5bfb5e917208113e (diff)
downloadfork-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-xacprep2
1 files changed, 1 insertions, 1 deletions
diff --git a/acprep b/acprep
index bdf244a2..d4c65359 100755
--- a/acprep
+++ b/acprep
@@ -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.