Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ AC_FUNC_STRTOD
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T

LDFLAGS="$LDFLAGS -Qunused-arguments"

dnl Let Makefile know if we are GCC.
AM_CONDITIONAL(GCC, test "$GCC" = yes)

Expand Down
1 change: 0 additions & 1 deletion examples/gpx/gpxtracktokml.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ class TrkPtHandler : public kmlconvenience::GpxTrkPtHandler {
FolderPtr trip_folder_;
PointPtr point_;
boost::scoped_ptr<DateTime> date_time_;
bool gather_char_data_;
std::string char_data_;
time_t last_time_;
std::string last_date_;
Expand Down
1 change: 0 additions & 1 deletion src/kml/engine/kml_file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ using kmlbase::XmlnsId;

namespace kmlengine {

static const char kDefaultXmlns[] = "http://www.opengis.net/kml/2.2";
static const char kDefaultEncoding[] = "utf-8";

// static
Expand Down
2 changes: 0 additions & 2 deletions src/kml/regionator/regionator_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@

namespace kmlregionator {

static const int kAlignRegionMaxDepth = 24;

using kmldom::AbstractLatLonBoxPtr;
using kmldom::CoordinatesPtr;
using kmldom::DocumentPtr;
Expand Down
2 changes: 0 additions & 2 deletions src/kml/xsd/xsd_element.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ namespace kmlxsd {
XsdElement::XsdElement()
: abstract_(false), // XSD default
ref_(false),
min_occurs_(1), // XSD default
max_occurs_(1), // XSD default
type_id_(XsdPrimitiveType::XSD_INVALID) {
}

Expand Down
2 changes: 0 additions & 2 deletions src/kml/xsd/xsd_element.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ class XsdElement : public kmlbase::Referent {
bool ParseAttributes(const kmlbase::Attributes& attributes);
bool abstract_;
bool ref_;
int min_occurs_;
int max_occurs_;
string default_;
string name_;
string type_;
Expand Down