summaryrefslogtreecommitdiff
path: root/src/variable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/variable.cpp')
-rw-r--r--src/variable.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/variable.cpp b/src/variable.cpp
index 4c5ca4c..db7726c 100644
--- a/src/variable.cpp
+++ b/src/variable.cpp
@@ -309,6 +309,10 @@ Variable &Variable::operator+=( const Variable &rhs )
309 case tVariable: 309 case tVariable:
310 throw VariableException("You cannot add variable names."); 310 throw VariableException("You cannot add variable names.");
311 break; 311 break;
312
313 case tList:
314 (*lValue).append( rhs );
315 break;
312 } 316 }
313 317
314 return *this; 318 return *this;