Skip to content

Commit 49900ee

Browse files
jleproustzimmerle
authored andcommitted
Fix variables output in debug logs
1 parent 25e4445 commit 49900ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/variables/variable.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void Variable::addsKeyExclusion(Variable *v) {
7777

7878

7979
std::string operator+(std::string a, Variable *v) {
80-
return *v->m_fullName.get();
80+
return a + *v->m_fullName.get();
8181
}
8282

8383

0 commit comments

Comments
 (0)