From 2f908278138f8200bf39c6a72d4f3a3b9fee304d Mon Sep 17 00:00:00 2001 From: esther Date: Wed, 10 Apr 2024 13:38:53 +0200 Subject: [PATCH] removed one dependency --- src/HeightMap.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/HeightMap.cpp b/src/HeightMap.cpp index 6997768..b82e96e 100644 --- a/src/HeightMap.cpp +++ b/src/HeightMap.cpp @@ -1,5 +1,4 @@ #include -#include #include #include "gdal/gdal_priv.h" @@ -40,4 +39,4 @@ float HeightMap::get_pixel(int x, int y) // all the pixels are in an array of floats from left to right, top to bottom int offset = ((this->width * y) + x); return *(this->data + offset); -} \ No newline at end of file +}