osrm-backend/include/storage/shared_memory_ownership.hpp
Dennis Luxen a4aa153ba4 Use nested namespace
It's a mechanical change to modernize the code base
2022-12-11 10:17:17 +01:00

16 lines
223 B
C++

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