diff options
author | hf@eagle.intranet.mysql.r18.ru <> | 2006-01-21 18:50:06 +0400 |
---|---|---|
committer | hf@eagle.intranet.mysql.r18.ru <> | 2006-01-21 18:50:06 +0400 |
commit | 4f368f9f93246a319a55b5ee34744b5425fb8f59 (patch) | |
tree | ba57b634fbff540434a56e3ce0639c85ec0f82ea /sql/spatial.h | |
parent | f2c3ed8e7b2ab119b6d8896c5187ec375a5e70d4 (diff) | |
parent | 02ce3d0cad5ef5cc6e77a1fdf628bf825b5f9157 (diff) | |
download | mariadb-git-4f368f9f93246a319a55b5ee34744b5425fb8f59.tar.gz |
Merging
Diffstat (limited to 'sql/spatial.h')
-rw-r--r-- | sql/spatial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/spatial.h b/sql/spatial.h index 4253689c078..527dc750bdc 100644 --- a/sql/spatial.h +++ b/sql/spatial.h @@ -142,7 +142,7 @@ struct MBR bool inner_point(double x, double y) const { /* The following should be safe, even if we compare doubles */ - return (xmin<x) && (xmax>x) && (ymin<y) && (ymax>x); + return (xmin<x) && (xmax>x) && (ymin<y) && (ymax>y); } int overlaps(const MBR *mbr) |