Avoid unnecessary copies when using Dictionary::Pair in loops

refs #12509
This commit is contained in:
Gunnar Beutner 2016-08-30 23:01:54 +02:00
parent e61ac32121
commit 5127a193b4
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public:
typedef std::map<String, Value>::size_type SizeType;
typedef std::pair<String, Value> Pair;
typedef std::map<String, Value>::value_type Pair;
inline Dictionary(void)
{ }