osrm-backend/include/storage/shared_memory_ownership.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

19 lines
236 B
C++

#ifndef SHARED_MEMORY_OWNERSHIP_HPP
#define SHARED_MEMORY_OWNERSHIP_HPP
namespace osrm
{
namespace storage
{
enum class Ownership
{
Container,
View,
External
};
}
} // namespace osrm
#endif // SHARED_MEMORY_OWNERSHIP_HPP