summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/clover
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2014-10-20 09:53:39 +0100
committerEmil Velikov <[email protected]>2014-10-23 15:18:12 +0100
commitb4039cf15a5f374add7846a966bb2ef4e738adab (patch)
tree7df445ed39f2e30526ea637d8d6e15f833cef55f /src/gallium/state_trackers/clover
parentc63eb5dd5eccf8ecfcb9d83d680e17d2d6a12e7b (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.hpp4
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 {