// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma // de Barcelona (UAB). // // This work is licensed under the terms of the MIT license. // For a copy, see . #pragma once #include namespace carla { template struct are_same; template struct are_same { static constexpr bool value = std::is_same::value && are_same::value; }; template struct are_same { static constexpr bool value = std::is_same::value; }; } // namespace carla