Refactoring on the variable read/store methods

Now it is ready to received two (or more) variables with same key.
This commit is contained in:
Felipe Zimmerle
2015-07-14 00:25:59 -03:00
parent f13a1bd880
commit 80f13437e3
6 changed files with 59 additions and 37 deletions

View File

@@ -58,7 +58,7 @@ double random_number(const double from, const double to) {
std::string dash_if_empty(const std::string& str) {
if (str.empty()) {
if (&str == NULL || str.empty()) {
return "-";
}