diff options
Diffstat (limited to 'core/pair.h')
-rw-r--r-- | core/pair.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/pair.h b/core/pair.h index fe73377fab..d75cbed642 100644 --- a/core/pair.h +++ b/core/pair.h @@ -34,6 +34,9 @@ struct Pair { F first; S second; + + Pair() {} + Pair( F p_first, S p_second) { first=p_first; second=p_second; } }; #endif // PAIR_H |