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: 1 addition & 1 deletion include/GeographyPoint.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class GeographyPoint {
int32_t deserializeFrom(ByteBuffer &message,
int32_t offset,
bool &wasNull);
static const double NULL_COORDINATE = 360.0;
static const double NULL_COORDINATE;
private:
double m_longitude;
double m_latitude;
Expand Down
1 change: 1 addition & 0 deletions src/GeographyPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "ByteBuffer.hpp"

namespace voltdb {
const double GeographyPoint::NULL_COORDINATE = 360;
GeographyPoint::GeographyPoint()
: m_longitude(360.0),
m_latitude(360.0) {
Expand Down