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:
Emil Velikov 2014-10-20 09:53:39 +01:00
parent c63eb5dd5e
commit b4039cf15a

View file

@ -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 {