avoid unused variable warnings in disabled python text_placement bindings

This commit is contained in:
Dane Springmeyer 2014-07-29 09:39:07 -07:00
parent ea0a9240a3
commit a8b9ecf54d

View file

@ -112,8 +112,8 @@ void set_displacement(text_layout_properties &t, boost::python::tuple arg)
throw_error_already_set();
}
double x = extract<double>(arg[0]);
double y = extract<double>(arg[1]);
//double x = extract<double>(arg[0]);
//double y = extract<double>(arg[1]);
//t.displacement.set(x, y); FIXME
}