osrm-backend/include/extractor/extraction_node.hpp
Daniel Patterson 50d9632ed7
Upgrade formatting to clang-format 10 (#5895)
* Update formatting tools to clang-format-10

* Reformat using clang-format-10.0.09
2020-11-26 07:21:39 -08:00

20 lines
362 B
C++

#ifndef EXTRACTION_NODE_HPP
#define EXTRACTION_NODE_HPP
namespace osrm
{
namespace extractor
{
struct ExtractionNode
{
ExtractionNode() : traffic_lights(false), barrier(false) {}
void clear() { traffic_lights = barrier = false; }
bool traffic_lights;
bool barrier;
};
} // namespace extractor
} // namespace osrm
#endif // EXTRACTION_NODE_HPP