aboutsummaryrefslogtreecommitdiff
path: root/core/hash_map.h
diff options
context:
space:
mode:
authorRémi Verschelde2017-12-06 21:36:34 +0100
committerRémi Verschelde2017-12-07 08:02:00 +0100
commit13c2ff932089db24841bb971b645141218bd8586 (patch)
tree1fc056e9e5531b9d039ecfcf19602cdce33222d2 /core/hash_map.h
parenta8ceb7e3f213216e4fb103a6a8687d007632f788 (diff)
downloadgodot-13c2ff932089db24841bb971b645141218bd8586.tar.gz
godot-13c2ff932089db24841bb971b645141218bd8586.tar.zst
godot-13c2ff932089db24841bb971b645141218bd8586.zip
Diffstat (limited to 'core/hash_map.h')
-rw-r--r--core/hash_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/hash_map.h b/core/hash_map.h
index e100d7a90..a53cb53c8 100644
--- a/core/hash_map.h
+++ b/core/hash_map.h
@@ -63,9 +63,9 @@ public:
TData data;
Pair() {}
- Pair(const TKey &p_key, const TData &p_data)
- : key(p_key),
- data(p_data) {
+ Pair(const TKey &p_key, const TData &p_data) :
+ key(p_key),
+ data(p_data) {
}
};