Fix variables output in debug logs

This commit is contained in:
Julien Leproust 2019-04-03 14:49:12 +02:00 committed by Felipe Zimmerle
parent 25e4445834
commit 49900eec97
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -77,7 +77,7 @@ void Variable::addsKeyExclusion(Variable *v) {
std::string operator+(std::string a, Variable *v) {
return *v->m_fullName.get();
return a + *v->m_fullName.get();
}