diff options
author | Emil Velikov <[email protected]> | 2014-10-20 09:53:39 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-10-23 15:18:12 +0100 |
commit | b4039cf15a5f374add7846a966bb2ef4e738adab (patch) | |
tree | 7df445ed39f2e30526ea637d8d6e15f833cef55f /src/gallium/state_trackers/clover | |
parent | c63eb5dd5eccf8ecfcb9d83d680e17d2d6a12e7b (diff) |
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]>
Diffstat (limited to 'src/gallium/state_trackers/clover')
-rw-r--r-- | src/gallium/state_trackers/clover/util/compat.hpp | 4 |
1 files 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 a52a6af7a46..735994f50a6 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 { |