GUDHI / gudhi-devel

The GUDHI library is a generic open source C++ library, with a Python interface, for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding.
https://gudhi.inria.fr/
MIT License
245 stars 65 forks source link

include guard macros #1097

Open mglisse opened 3 days ago

mglisse commented 3 days ago

Headers are protected against double inclusion using macros

#ifndef POINT_H_
#define POINT_H_

In my opinion, the names we are using are way too generic, they should be prefixed with GUDHI_ to minimize the risk of conflict with other libraries.