Module: Mesa Branch: master Commit: b4039cf15a5f374add7846a966bb2ef4e738adab URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b4039cf15a5f374add7846a966bb2ef4e738adab
Author: Emil Velikov <[email protected]> Date: Mon Oct 20 09:53:39 2014 +0100 clover: use correct typenames for compat::pair's first/second Seems to be a typo judging from the overall declaration of the template. Cc: EdB <[email protected]> Cc: Francisco Jerez <[email protected]> Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Francisco Jerez <[email protected]> --- src/gallium/state_trackers/clover/util/compat.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/state_trackers/clover/util/compat.hpp b/src/gallium/state_trackers/clover/util/compat.hpp index a52a6af..735994f 100644 --- a/src/gallium/state_trackers/clover/util/compat.hpp +++ b/src/gallium/state_trackers/clover/util/compat.hpp @@ -417,8 +417,8 @@ namespace clover { pair(T first, S second) : first(first), second(second) {} - S first; - T second; + T first; + S second; }; class exception { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
