C++11: N2672 Initializer lists

- Modified code to use the more compact and readable initializer lists.
This commit is contained in:
Paul Beckingham
2015-05-24 12:47:36 -04:00
parent 49f7612704
commit 7bbc794d3a
25 changed files with 136 additions and 231 deletions

View File

@@ -41,10 +41,8 @@ ColumnID::ColumnID ()
_style = "number";
_label = STRING_COLUMN_LABEL_ID;
_modifiable = false;
_styles.push_back ("number");
_examples.push_back ("123");
_styles = {"number"};
_examples = {"123"};
}
////////////////////////////////////////////////////////////////////////////////