]> granicus.if.org Git - graphviz/commitdiff
nearest_neighbor_graph_ann: remove forcing of C linkage
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 8 Jan 2022 18:59:48 +0000 (10:59 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 11 Jan 2022 15:52:08 +0000 (07:52 -0800)
The only calls into this function are from C++ code now, so there is no need to
require C calling conventions.

Gitlab: #2154

lib/mingle/nearest_neighbor_graph_ann.h

index d02affcd9c5b8f56e37a7991c95097c1b7f475e9..77660d9add33001d0c60198eb184ac810c8d3666 100644 (file)
 
 #pragma once
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 void nearest_neighbor_graph_ann(int nPts, int k, double eps, double *x, int *nz0, int *irn0, int *jcn0, double *val0);
-
-#ifdef __cplusplus
-}
-#endif