mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
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 <edb+mesa@sigluy.net> Cc: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
c63eb5dd5e
commit
b4039cf15a
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue