diff options
| author | Wilson E. Alvarez | 2017-08-12 07:04:30 -0400 |
|---|---|---|
| committer | Wilson E. Alvarez | 2017-08-14 13:28:06 -0400 |
| commit | 21d281c4a953404c8f13e1cb7ee8d4cf9c25bb4c (patch) | |
| tree | 2a4144fca78e6fc84efec7583297f6d8dcea9614 /core/pair.h | |
| parent | 9575dbdf788e8a5154b3ec2f66913e731ac02850 (diff) | |
| download | godot-21d281c4a953404c8f13e1cb7ee8d4cf9c25bb4c.tar.gz godot-21d281c4a953404c8f13e1cb7ee8d4cf9c25bb4c.tar.zst godot-21d281c4a953404c8f13e1cb7ee8d4cf9c25bb4c.zip | |
Diffstat (limited to 'core/pair.h')
| -rw-r--r-- | core/pair.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pair.h b/core/pair.h index d4b189753..d517339dd 100644 --- a/core/pair.h +++ b/core/pair.h @@ -37,7 +37,7 @@ struct Pair { S second; Pair() {} - Pair(F p_first, S p_second) + Pair(F p_first, const S &p_second) : first(p_first), second(p_second) { } |
