]> granicus.if.org Git - postgis/commitdiff
Remove trailing blanks
authorSandro Santilli <strk@kbt.io>
Thu, 14 Sep 2017 15:56:58 +0000 (15:56 +0000)
committerSandro Santilli <strk@kbt.io>
Thu, 14 Sep 2017 15:56:58 +0000 (15:56 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@15731 b70326c6-7e19-0410-871a-916f4a2858ee

extensions/address_standardizer/pagc_api.h
liblwgeom/bytebuffer.h
liblwgeom/effectivearea.h
liblwgeom/lwin_wkt.h
liblwgeom/lwtree.h
liblwgeom/lwunionfind.h
libpgcommon/lwgeom_pg.h
loader/shp2pgsql-core.h
raster/rt_core/librtcore.h

index aba20b1f06836fdf9e3ca87b2e34a69f4964826e..18e4ab3d40b72850a3280547647369d489162513 100644 (file)
@@ -977,7 +977,7 @@ int extract_house(const char *, int) ;
 /*-- <revision date='2012-08-30'> Use check_macro </revision> --*/
 int read_unstandardized(SCHEMA *, DS_Handle, DS_Entity_t, int *, int *, int *, char *, CHECK_MACRO* , char *, char **, DS_Field_t *, int *, ERR_PARAM *) ;
 
-/* -- makebeta.c -- */ 
+/* -- makebeta.c -- */
 int init_standardized_table(SCHEMA *, ERR_PARAM *) ;
 int soundex_street_words(char *, char **) ;
 /* 2008-08-01 : add stand_alt_macro flag for alternate city names */
@@ -1243,7 +1243,7 @@ macros for converting and verifying pagc_client args
 
 #define INTEGER_AS_BYTES( PTR_VAL ) \
        * ( ( int * ) ( PTR_VAL ) )
-       
+
 #define DOUBLE_AS_BYTES( PTR_VAL ) \
        *( ( double * ) ( PTR_VAL ) )
 
index 0a30faf304e6f82d8f3d3f8bfdbd6ba1db35cdbd..645a5e28f401fa49b79bc99eb9708417a8336ff2 100644 (file)
@@ -38,8 +38,8 @@ typedef struct
 {
        size_t capacity;
        uint8_t *buf_start;
-       uint8_t *writecursor;   
-       uint8_t *readcursor;    
+       uint8_t *writecursor;
+       uint8_t *readcursor;
 }
 bytebuffer_t;
 
index e1d841e0a23392959b3c24c396b9915e99a5a06b..b21c8bfce38f74969e0cbc2b6be474922ecac566 100644 (file)
@@ -50,7 +50,7 @@ This structure holds a minheap tree that is used to keep track of what points th
 When elliminating points the neighbor points has its effective area affected and the minheap helps to resort efficient.
 */
 typedef struct
-{              
+{
        int maxSize;
        int usedSize;
        areanode **key_array;
index 43742d7ae431a7986d3ba660f71af7a4dee60ff4..14f54db26e2d0429d96a41e34cba372f62f75208 100644 (file)
@@ -36,7 +36,7 @@ typedef struct
        double y;
        double z;
        double m;
-}      
+}
 POINT;
 
 /*
index ed1ca8607ae3e9570a50fe2529409fbad86f91f5..66d7f6442fb0f015bdd3406071e18441fe7d20c9 100644 (file)
@@ -32,7 +32,7 @@ typedef struct rect_node
        struct rect_node *right_node;
        POINT2D *p1;
        POINT2D *p2;
-} RECT_NODE;   
+} RECT_NODE;
 
 int rect_tree_contains_point(const RECT_NODE *tree, const POINT2D *pt, int *on_boundary);
 int rect_tree_intersects_tree(const RECT_NODE *tree1, const RECT_NODE *tree2);
index 4c2d3e9cb91d0b0e444148e9318a1399765deb20..34b2efd0ed85b5862f8591918247845839a4ef78 100644 (file)
@@ -55,7 +55,7 @@ void UF_union(UNIONFIND* uf, uint32_t i, uint32_t j);
  * same cluster are contiguous in the array */
 uint32_t* UF_ordered_by_cluster(UNIONFIND* uf);
 
-/* Replace the cluster ids in a UNIONFIND with sequential ids starting at one. 
+/* Replace the cluster ids in a UNIONFIND with sequential ids starting at one.
  * If is_in_cluster array is provided, it will be used to skip any indexes
  * that are not in a cluster.
  * */
index 1184af2aea6fad92556fc5d828a46fd68d16a92a..1a7fa350846b39f74893225e34e24b9b19cb853b 100644 (file)
@@ -49,7 +49,7 @@ void pg_install_lwgeom_handlers(void);
         } while (0);
 
 #else /* POSTGIS_DEBUG_LEVEL */
-       
+
 /* Empty prototype that can be optimised away by the compiler for non-debug builds */
 #define POSTGIS_DEBUG(level, msg) \
         ((void) 0)
index 021b3a402bc8d5485d9a3f579c965f843cf64edd..490e185223eb31288dc701c01579ead6a36375e7 100644 (file)
@@ -101,7 +101,7 @@ typedef struct shp_loader_config
 
        /* 0 = MULTIPOLYGON/MULTILINESTRING, 1 = force to POLYGON/LINESTRING */
        int simple_geometries;
-       
+
        /* 0 = geometry, 1 = geography */
        int geography;
 
@@ -143,7 +143,7 @@ typedef struct shp_loader_config
 
        /* whether to do a single transaction or run each statement on its own */
        int usetransaction;
-       
+
        /* Name of the column map file if specified */
        char *column_map_filename;
 
@@ -160,7 +160,7 @@ typedef struct shp_loader_state
 
        /* Shapefile handle */
        SHPHandle hSHPHandle;
-       
+
        /* Shapefile type */
        int shpfiletype;
 
@@ -188,7 +188,7 @@ typedef struct shp_loader_state
 
        /* Pointer to an array of PostgreSQL field types */
        char **pgfieldtypes;
-       
+
        /* String containing colume name list in the form "(col1, col2, col3 ... , colN)" */
        char *col_names;
 
@@ -216,7 +216,7 @@ typedef struct shp_loader_state
        /* geometry/geography column name to use.  Will be set to the default if the config did
           not specify a column name. */
        char *geo_col;
-       
+
        /* Column map */
   colmap column_map;
 
index 96d5eeff43b25ddfa5caac01f503c868127387d9..7e4baa591c7896b8a6255023c6ecc60dd414fcfa 100644 (file)
@@ -829,7 +829,7 @@ rt_bandstats rt_band_get_summary_stats(
        int exclude_nodata_value, double sample, int inc_vals,
        uint64_t *cK, double *cM, double *cQ
 );
-       
+
 /**
  * Count the distribution of data
  *