apache / incubator-graphar

An open source, standard data file format for graph data storage and retrieval.
https://graphar.apache.org/
Apache License 2.0
195 stars 40 forks source link

[Feat][C++] Use `#pragma once` to replace include guard #454

Closed acezen closed 2 months ago

acezen commented 2 months ago

Is your feature request related to a problem? Please describe. #pragma once serves the same purpose as include guard but with several advantages, including less code, avoidance of name clashes, less prone to making mistakes.

Describe the solution you'd like Replace include guard with program once.

acezen commented 2 months ago

close as solved