diff options
| author | ljfa-ag <ljfa-ag@web.de> | 2015-07-22 22:10:54 +0200 |
|---|---|---|
| committer | ljfa-ag <ljfa-ag@web.de> | 2015-07-22 22:10:54 +0200 |
| commit | a4c22fa02f779c28109e4617ba64ffbd760abcea (patch) | |
| tree | e30c09083f5427f7c5958fa7ad8940e96e855c72 /include | |
| parent | e969e62e5c724efc995ea55d0c9238631ab4377b (diff) | |
| download | Project-Tick-a4c22fa02f779c28109e4617ba64ffbd760abcea.tar.gz Project-Tick-a4c22fa02f779c28109e4617ba64ffbd760abcea.zip | |
Change argument of list::set to value
Diffstat (limited to 'include')
| -rw-r--r-- | include/tag_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tag_list.h b/include/tag_list.h index f1f5e6dec1..f44f4ba66e 100644 --- a/include/tag_list.h +++ b/include/tag_list.h @@ -96,12 +96,12 @@ public: const value& operator[](size_t i) const; /** - * @brief Assigns a tag at the given index - * @throw std::bad_cast if the type of the tag does not match the list's + * @brief Assigns a value at the given index + * @throw std::bad_cast if the type of the value does not match the list's * content type * @throw std::out_of_range if the index is out of range */ - void set(size_t i, value_initializer&& val); + void set(size_t i, value&& val); /** * @brief Appends the tag to the end of the list |
