[Mesa-dev] [PATCH 1/2] clover: std::pair is not c++98/c++11 safe

Francisco Jerez currojerez at riseup.net
Tue Aug 5 05:39:01 PDT 2014


EdB <edb+mesa at sigluy.net> writes:

> add a simple compat::pair
> ---
>  src/gallium/state_trackers/clover/util/compat.hpp | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/src/gallium/state_trackers/clover/util/compat.hpp b/src/gallium/state_trackers/clover/util/compat.hpp
> index 50e1c7d..c5d1b39 100644
> --- a/src/gallium/state_trackers/clover/util/compat.hpp
> +++ b/src/gallium/state_trackers/clover/util/compat.hpp
> @@ -295,6 +295,12 @@ namespace clover {
>           }
>        };
>  
> +      template<class T1, class T2 = T1>

Can we remove the default template parameter to match STL more closely?

> +      struct pair {
> +         T1 first;
> +         T2 second;
> +      };
> +
>        template<typename T>
>        bool
>        operator==(const vector_ref<T> &a, const vector_ref<T> &b) {
> -- 
> 2.0.4
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 212 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140805/19b97e4e/attachment.sig>


More information about the mesa-dev mailing list