topology-tool-kit / ttk

TTK - Topological Data Analysis and Visualization - Source Code
https://topology-tool-kit.github.io/
Other
415 stars 124 forks source link

nonstandard __int128 usage #1036

Closed petersteneteg closed 1 month ago

petersteneteg commented 3 months ago

Describe the bug

in #1024 int128 is used without any guards, int128 is a gnu extension and not part of c++ at this time hence this breaks compilation on other platforms such as MSVC.

So far this is the only usage of __int128 in ttk that I can find.

Please revert this or at least guard it.