Merge branch '2.3.x' of github.com:mapnik/mapnik

This commit is contained in:
Dane Springmeyer 2013-11-04 09:40:58 -08:00
commit ca25d6797a
2 changed files with 4 additions and 4 deletions

View file

@ -1755,8 +1755,8 @@ if not preconfigured:
env.Append(CPPDEFINES = ndebug_defines)
# Common flags for g++/clang++ CXX compiler.
# TODO: clean up code more to make -Wsign-conversion -Wconversion viable
common_cxx_flags = '-Wall -Wsign-compare -Wshadow %s %s -ftemplate-depth-300 ' % (env['WARNING_CXXFLAGS'], pthread)
# TODO: clean up code more to make -Wsign-conversion -Wconversion -Wshadow viable
common_cxx_flags = '-Wall -Wsign-compare %s %s -ftemplate-depth-300 ' % (env['WARNING_CXXFLAGS'], pthread)
# https://github.com/mapnik/mapnik/issues/1835
if sys.platform == 'darwin' and env['CXX'] == 'g++':

View file

@ -83,9 +83,9 @@ public:
void clear();
inline void painted(bool painted)
inline void painted(bool is_painted)
{
painted_ = painted;
painted_ = is_painted;
}
inline bool painted() const